1
0

add nix settings and dir colors for MacOS

This commit is contained in:
2025-09-21 15:44:26 -07:00
parent 91a1aa83f7
commit 84ec7b5318
5 changed files with 23 additions and 0 deletions

12
system/macos/nix.nix Normal file
View File

@@ -0,0 +1,12 @@
{ 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}" ];
};
};
}