dotfiles/systems/server/default.nix
2024-11-04 02:09:15 -06:00

15 lines
271 B
Nix
Executable file

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