-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkgs: use _64gram nix package, cleanup
- Loading branch information
1 parent
11a1fff
commit f5991e1
Showing
6 changed files
with
55 additions
and
47 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
{ | ||
lib, | ||
pkgs, | ||
pkgs-edge, | ||
pkgs-master, | ||
inputs, | ||
... | ||
}: { | ||
imports = [ | ||
#./amdgpu.nix # import modules here to test | ||
"${inputs.nixpkgs-scx-test}/nixos/modules/services/scheduling/scx.nix" | ||
]; | ||
|
||
nixpkgs.overlays = [ | ||
(final: prev: { | ||
_7zz = pkgs-master._7zz; | ||
pyprland = pkgs-master.pyprland; | ||
}) | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,6 @@ | |
shell = | ||
if (userSettings.shell == "zsh") | ||
then pkgs.zsh | ||
else pkgs.bash; | ||
else pkgs.bashInteractive; | ||
}; | ||
} |