Firefox
This commit is contained in:
parent
d87a8b57f7
commit
02bf8a261c
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
28
flake.nix
28
flake.nix
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue