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