This commit is contained in:
Nathan McCarty 2022-01-26 17:29:11 -05:00
parent d87a8b57f7
commit 02bf8a261c
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 14 additions and 15 deletions

View File

@ -44,7 +44,6 @@
}; };
## Left over uncategorized packages ## Left over uncategorized packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
firefox
unstable.firefox-beta-bin unstable.firefox-beta-bin
]; ];
} }

View File

@ -23,6 +23,20 @@
./modules/common.nix ./modules/common.nix
./modules/ssh.nix ./modules/ssh.nix
./applications/utils-core.nix ./applications/utils-core.nix
({ pkgs, ... }: {
## Setup binary caches
# First install cachix, so we can discover new ones
environment.systemPackages = [ pkgs.cachix ];
# Then configure up the nix community cache
nix = {
binaryCaches = [
"https://nix-community.cachix.org"
];
binaryCachePublicKeys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
})
]; ];
desktopModules = coreModules ++ [ desktopModules = coreModules ++ [
./modules/audio.nix ./modules/audio.nix
@ -56,20 +70,6 @@
}; };
modules = [ modules = [
./hardware/levitation.nix ./hardware/levitation.nix
({ pkgs, ... }: {
## Setup binary caches
# First install cachix, so we can discover new ones
environment.systemPackages = [ pkgs.cachix ];
# Then configure up the nix community cache
nix = {
binaryCaches = [
"https://nix-community.cachix.org"
];
binaryCachePublicKeys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
})
] ++ desktopModules; ] ++ desktopModules;
}; };