hackens-org-configurations/machines/rigel/nix-conf.nix

22 lines
228 B
Nix
Raw Normal View History

2024-03-08 17:04:42 +01:00
{
lib,
pkgs,
config,
metadata,
nodes,
name,
...
2024-09-24 12:33:51 +02:00
}:
{
2024-03-08 17:04:42 +01:00
nix.settings = {
2024-09-24 12:33:51 +02:00
trusted-users = [
"root"
"@wheel"
];
extra-experimental-features = [
"nix-command"
"flakes"
];
2024-03-08 17:04:42 +01:00
};
}