16 lines
224 B
Nix
16 lines
224 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
config,
|
||
|
metadata,
|
||
|
nodes,
|
||
|
name,
|
||
|
...
|
||
|
}: {
|
||
|
nix.settings = {
|
||
|
trusted-users = ["root" "@wheel"];
|
||
|
auto-optimise-store = true;
|
||
|
extra-experimental-features = ["nix-command" "flakes"];
|
||
|
};
|
||
|
}
|