From cac73262dc038465bb31ee82a14cdea2880ba3fc Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 16 Apr 2025 20:03:43 -0400 Subject: [PATCH] add self as trusted user --- nixos/modules/user.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/user.nix b/nixos/modules/user.nix index 35885e7..35d0fa2 100644 --- a/nixos/modules/user.nix +++ b/nixos/modules/user.nix @@ -31,4 +31,6 @@ ]; }; }; + + nix.settings.trusted-users = ["nathan"]; }