diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
| commit | 771039f64d44a60f9691582fe559e26b431bbbe8 (patch) | |
| tree | 1f980dd57b0f3256825f04f101c81ae458a4b424 /profiles/darwin.nix | |
| parent | update builders configuration (diff) | |
| download | infra-771039f64d44a60f9691582fe559e26b431bbbe8.tar.gz | |
remove abstractions for managing users
Diffstat (limited to 'profiles/darwin.nix')
| -rw-r--r-- | profiles/darwin.nix | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/profiles/darwin.nix b/profiles/darwin.nix index 736578c..8b260f5 100644 --- a/profiles/darwin.nix +++ b/profiles/darwin.nix @@ -1,9 +1,4 @@ -{ - lib, - pkgs, - adminUser, - ... -}: +{ lib, pkgs, ... }: { fonts.packages = with pkgs; [ source-code-pro @@ -45,7 +40,7 @@ # Touch ID for sudo auth security.pam.services.sudo_local.touchIdAuth = true; - system.primaryUser = adminUser.name; + system.primaryUser = "fcuny"; nix = { extraOptions = '' @@ -73,7 +68,7 @@ ]; trusted-users = [ "@admin" - adminUser.name + "fcuny" ]; experimental-features = lib.mkDefault [ "nix-command" |
