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