30 lines
575 B
Nix
Raw Normal View History

{
lib,
systemConfig,
...
}:
{
2025-04-15 23:39:10 +02:00
imports = [
(lib.custom.relativeToRoot "shared/modules/nix-helper.nix")
(lib.custom.relativeToRoot "shared/modules/nixos.nix")
(lib.custom.relativeToRoot "shared/modules/shell.nix")
2025-04-15 23:39:10 +02:00
./boot.nix
./development.nix
2025-04-15 23:39:10 +02:00
./hardware.nix
./networking.nix
./security
2025-04-15 23:39:10 +02:00
];
system.stateVersion = systemConfig.version;
users = {
mutableUsers = false;
users.${systemConfig.user.name} = {
isNormalUser = true;
password = systemConfig.user.password;
extraGroups = [ "wheel" ];
};
};
}