1
1
Fork 0

Add beatific module to empyrean

This commit is contained in:
Jaculabilis 2023-08-02 17:45:22 +00:00
parent a718222744
commit c431fb3ca5
2 changed files with 11 additions and 5 deletions

View File

@ -51,6 +51,7 @@
empyrean = nixpkgs-next.lib.nixosSystem { empyrean = nixpkgs-next.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
self.nixosModules.beatific
intake.nixosModules.default intake.nixosModules.default
intake-sources.nixosModules.default intake-sources.nixosModules.default
./machine/empyrean ./machine/empyrean

View File

@ -15,6 +15,16 @@
./inquisitor.nix ./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. # Use the GRUB 2 boot loader.
boot.loader.grub = { boot.loader.grub = {
enable = true; enable = true;
@ -26,15 +36,10 @@
nix = { nix = {
package = pkgs.nixFlakes; package = pkgs.nixFlakes;
settings.max-jobs = 2; settings.max-jobs = 2;
extraOptions = ''
experimental-features = nix-command flakes
'';
}; };
swapDevices = [ { device = "/swap"; size = 1024; } ]; swapDevices = [ { device = "/swap"; size = 1024; } ];
networking.hostName = "empyrean";
# The global useDHCP flag is deprecated, therefore explicitly set to false here. # 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 # Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour. # replicates the default behaviour.