Add beatific module to empyrean
This commit is contained in:
parent
a718222744
commit
c431fb3ca5
|
@ -51,6 +51,7 @@
|
|||
empyrean = nixpkgs-next.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
self.nixosModules.beatific
|
||||
intake.nixosModules.default
|
||||
intake-sources.nixosModules.default
|
||||
./machine/empyrean
|
||||
|
|
|
@ -15,6 +15,16 @@
|
|||
./inquisitor.nix
|
||||
];
|
||||
|
||||
beatific.hostName = "empyrean";
|
||||
beatific.defaults = {
|
||||
time = false;
|
||||
i18n = false;
|
||||
programs = false;
|
||||
ssh = false;
|
||||
nebula = false;
|
||||
tvb = false;
|
||||
};
|
||||
|
||||
# Use the GRUB 2 boot loader.
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
|
@ -26,15 +36,10 @@
|
|||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
settings.max-jobs = 2;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
|
||||
swapDevices = [ { device = "/swap"; size = 1024; } ];
|
||||
|
||||
networking.hostName = "empyrean";
|
||||
|
||||
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||||
# replicates the default behaviour.
|
||||
|
|
Loading…
Reference in New Issue