1
0
Files
nix-shared/system/macos/nix.nix

13 lines
273 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
# Enable the Nix package manager
nix = {
enable = true;
settings = {
# Configure trusted users who can perform privileged Nix operations
trusted-users = lib.mkForce [ "@admin" "${config.system.primaryUser}" ];
};
};
}