From e34e63be115cd83de32e30b2a5ff1a75ad8c5257 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 31 May 2020 13:57:38 +0000 Subject: [PATCH] Add root to trusted users --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index bb8395f..acd20ba 100644 --- a/configuration.nix +++ b/configuration.nix @@ -55,7 +55,7 @@ in { system.stateVersion = "19.09"; - nix.trustedUsers = [ "user" ]; + nix.trustedUsers = [ "root" "user" ]; nix.optimise.automatic = true; nix.gc.automatic = true; nix.gc.options = "--delete-older-than 7d";