18 lines
446 B
Nix
18 lines
446 B
Nix
{
|
|
security.sudo.wheelNeedsPassword = false;
|
|
nix.settings = {
|
|
trusted-users = [ "root" "@wheel" ];
|
|
|
|
trusted-public-keys = [
|
|
"thor:yRx3HglIxjUYocp4/jAP9dPWxWBEpgP6hqj1ofEfn1A="
|
|
"odin:ClRXzxmDZl2Y94SG4YlWXGiJDY4L9DgZq/3OLR5+i6k="
|
|
"loki:HN1P2nXzIkqitl95MvjcSHxtDo7Ao+I8M8U/RqQLC5k="
|
|
];
|
|
|
|
# substituters = [
|
|
# "ssh-ng://thor.local"
|
|
# "ssh-ng://odin.local"
|
|
# "ssh-ng://loki.local"
|
|
# ];
|
|
};
|
|
}
|