hackens-org-configurations/machines/rigel/nix-conf.nix
2024-09-24 13:42:57 +02:00

21 lines
228 B
Nix

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