nixos-config/services/nix.nix

12 lines
102 B
Nix

{ config, ... }:
{
nix = {
useSandbox = true;
trustedUsers = [
"root"
"@wheel"
];
};
}