dotfiles/systems/server/default.nix

14 lines
281 B
Nix
Executable file

{lib, ...}: let
serverFiles = [
"boot"
"filesystem"
"graphics"
"hardware"
"networking"
"sops"
];
in {
imports = map (file: ./${file}.nix) serverFiles;
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
system.stateVersion = lib.mkForce "24.05";
}