forked from poz/niksos
18 lines
354 B
Nix
18 lines
354 B
Nix
{
|
|
config,
|
|
...
|
|
}: {
|
|
nix.settings = {
|
|
experimental-features = [
|
|
"flakes"
|
|
"nix-command"
|
|
];
|
|
trusted-users = [
|
|
"root"
|
|
config.myOptions.other.system.username
|
|
];
|
|
auto-optimise-store = true;
|
|
keep-outputs = true;
|
|
keep-derivations = true;
|
|
};
|
|
}
|