Add beatific module to catacomb
This commit is contained in:
parent
bda35d7da4
commit
13090dd594
|
@ -43,7 +43,10 @@
|
|||
};
|
||||
catacomb = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [ ./machine/catacomb ];
|
||||
modules = [
|
||||
self.nixosModules.beatific
|
||||
./machine/catacomb
|
||||
];
|
||||
};
|
||||
empyrean = nixpkgs-next.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
|
|
@ -8,6 +8,16 @@ in {
|
|||
./fileserver.nix
|
||||
];
|
||||
|
||||
beatific.hostName = "catacomb";
|
||||
beatific.defaults = {
|
||||
time = false;
|
||||
i18n = false;
|
||||
programs = false;
|
||||
ssh = false;
|
||||
nebula = false;
|
||||
tvb = false;
|
||||
};
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
|
||||
|
@ -46,7 +56,6 @@ in {
|
|||
];
|
||||
|
||||
networking = {
|
||||
hostName = "catacomb";
|
||||
hostId = "beeeeee5";
|
||||
firewall = {
|
||||
enable = true;
|
||||
|
@ -208,5 +217,4 @@ in {
|
|||
};
|
||||
|
||||
nix.settings.cores = 4;
|
||||
nix.extraOptions = "experimental-features = nix-command flakes";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue