Files
nixos-configuration/hosts/pi4/default.nix

27 lines
429 B
Nix
Raw Normal View History

{
lib,
config,
systemConfig,
...
}:
{
imports = with lib.custom; [
(relativeToBase "modules")
2025-04-15 23:39:10 +02:00
./boot.nix
./hardware.nix
./security
2025-04-15 23:39:10 +02:00
];
system.stateVersion = systemConfig.version;
users = {
mutableUsers = false;
users.${systemConfig.username} = {
isNormalUser = true;
hashedPasswordFile = config.sops.secrets.password-hash.path;
extraGroups = [ "wheel" ];
};
};
}