nixos-config/services/nix.nix

12 lines
102 B
Nix
Raw Permalink Normal View History

2021-05-04 05:04:24 +00:00
{ config, ... }:
{
nix = {
useSandbox = true;
trustedUsers = [
"root"
"@wheel"
];
};
}