host<name>/default.nix -> host/<name>/main.nix

add _file in all modules
This commit is contained in:
Gerg-L 2023-07-26 12:32:10 -04:00
parent bcea731103
commit 14726d5c6d
33 changed files with 36 additions and 0 deletions

View file

@ -34,5 +34,6 @@
];
};
};
_file = ./disko.nix;
};
}

View file

@ -47,6 +47,7 @@ _: {
hostName = "game-laptop";
networkmanager.enable = true;
};
services.openssh.settings.PermitRootLogin = lib.mkForce "prohibit-password";
#user managment
sops.secrets.root.neededForUsers = true;
users = {
@ -86,4 +87,5 @@ _: {
];
system.stateVersion = "23.05";
_file = ./main.nix;
}

View file

@ -23,5 +23,6 @@ _: {config, ...}: {
Option "OffTime" "0"
Option "BlankTime" "0"
'';
_file = ./prime.nix;
};
}