mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
14 lines
281 B
Nix
Executable file
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";
|
|
}
|