28 lines
539 B
Nix
28 lines
539 B
Nix
inputs: {
|
|
imports = [
|
|
./persistence.nix
|
|
./ssh.nix
|
|
./locales.nix
|
|
./packages.nix
|
|
|
|
./mysaa.nix
|
|
];
|
|
|
|
users.mutableUsers = false;
|
|
security.sudo = {
|
|
# Sysadmin accounts are only used for sysadmin purposes and can only be
|
|
# connected to via SSH. Locking admin privileges behind another password thus
|
|
# does not increase the security and is not very convenient.
|
|
wheelNeedsPassword = false;
|
|
|
|
execWheelOnly = true;
|
|
};
|
|
|
|
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
|
|
}
|