1
1
Fork 0

Add beatific module to catacomb

This commit is contained in:
Tim Van Baak 2023-08-02 17:03:35 +00:00
parent bda35d7da4
commit 13090dd594
2 changed files with 14 additions and 3 deletions

View File

@ -43,7 +43,10 @@
}; };
catacomb = nixpkgs.lib.nixosSystem { catacomb = nixpkgs.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
modules = [ ./machine/catacomb ]; modules = [
self.nixosModules.beatific
./machine/catacomb
];
}; };
empyrean = nixpkgs-next.lib.nixosSystem { empyrean = nixpkgs-next.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";

View File

@ -8,6 +8,16 @@ in {
./fileserver.nix ./fileserver.nix
]; ];
beatific.hostName = "catacomb";
beatific.defaults = {
time = false;
i18n = false;
programs = false;
ssh = false;
nebula = false;
tvb = false;
};
boot = { boot = {
loader = { loader = {
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default) # Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
@ -46,7 +56,6 @@ in {
]; ];
networking = { networking = {
hostName = "catacomb";
hostId = "beeeeee5"; hostId = "beeeeee5";
firewall = { firewall = {
enable = true; enable = true;
@ -208,5 +217,4 @@ in {
}; };
nix.settings.cores = 4; nix.settings.cores = 4;
nix.extraOptions = "experimental-features = nix-command flakes";
} }