Add beatific module to catacomb
This commit is contained in:
parent
bda35d7da4
commit
13090dd594
|
@ -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";
|
||||||
|
|
|
@ -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";
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue