I'm a braindead rat how did I forget this

This commit is contained in:
jacekpoz 2024-02-29 01:24:38 +01:00
parent f2715204fe
commit e7d3b9fc1f
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C

18
options/common/nix.nix Normal file
View 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;
};
}