22 lines
474 B
Nix
22 lines
474 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
nix = {
|
|
package = pkgs.nixVersions.latest;
|
|
settings = {
|
|
experimental-features = [
|
|
"flakes"
|
|
"nix-command"
|
|
];
|
|
trusted-users = [
|
|
"root"
|
|
config.myOptions.other.system.username
|
|
];
|
|
auto-optimise-store = true;
|
|
keep-outputs = true;
|
|
keep-derivations = true;
|
|
};
|
|
};
|
|
}
|