I'm a braindead rat how did I forget this
This commit is contained in:
parent
f2715204fe
commit
e7d3b9fc1f
1 changed files with 18 additions and 0 deletions
18
options/common/nix.nix
Normal file
18
options/common/nix.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue