Add stub configurations for magi hosts
This commit is contained in:
parent
a84a0197a3
commit
b12fa20294
4 changed files with 23 additions and 0 deletions
3
nixos/config/balthasar.nix
Normal file
3
nixos/config/balthasar.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ self, ... }: { lib, config, pkgs, ... }: {
|
||||||
|
imports = with self.nixosModules; [ magi ];
|
||||||
|
}
|
3
nixos/config/casper.nix
Normal file
3
nixos/config/casper.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ self, ... }: { lib, config, pkgs, ... }: {
|
||||||
|
imports = with self.nixosModules; [ magi ];
|
||||||
|
}
|
3
nixos/config/melchior.nix
Normal file
3
nixos/config/melchior.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ self, ... }: { lib, config, pkgs, ... }: {
|
||||||
|
imports = with self.nixosModules; [ magi ];
|
||||||
|
}
|
|
@ -1,4 +1,10 @@
|
||||||
{ self, ... }: { lib, config, pkgs, ... }: {
|
{ self, ... }: { lib, config, pkgs, ... }: {
|
||||||
|
imports = with self.nixosModules; [
|
||||||
|
default
|
||||||
|
mimalloc
|
||||||
|
physical
|
||||||
|
];
|
||||||
|
|
||||||
boot.kernelPackages = let
|
boot.kernelPackages = let
|
||||||
inherit (self.packages.x86_64-linux) linux-hardened;
|
inherit (self.packages.x86_64-linux) linux-hardened;
|
||||||
in pkgs.linuxPackagesFor (linux-hardened.override {
|
in pkgs.linuxPackagesFor (linux-hardened.override {
|
||||||
|
@ -56,4 +62,12 @@
|
||||||
CEPH_FS_POSIX_ACL = true;
|
CEPH_FS_POSIX_ACL = true;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ephemeral = {
|
||||||
|
device = "nodev";
|
||||||
|
boot = {
|
||||||
|
device = "nodev";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue