From 47bae37e8607d946d3c8272b6a817e8726264e0a Mon Sep 17 00:00:00 2001 From: sajenim Date: Mon, 22 Jan 2024 20:03:37 +0800 Subject: [PATCH] add sajenim to trusted users --- nixos/common/global/nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/common/global/nix.nix b/nixos/common/global/nix.nix index e4057b6..6a35883 100644 --- a/nixos/common/global/nix.nix +++ b/nixos/common/global/nix.nix @@ -22,6 +22,10 @@ experimental-features = "nix-command flakes"; # Deduplicate and optimize nix store auto-optimise-store = true; + # Additional rights when connecting to the Nix daemon + trusted-users = [ + "sajenim" + ]; }; }; }