From 6755f9e15c5f607800285ed6f7bf1c4e917efc1f Mon Sep 17 00:00:00 2001 From: Aditya Date: Thu, 22 Jun 2023 19:07:26 +0530 Subject: [PATCH] add user to trusted-users --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index 127b8c7..51e3d56 100644 --- a/configuration.nix +++ b/configuration.nix @@ -115,6 +115,8 @@ programs.zsh.enable = true; + nix.settings.trusted-users = [ "root" "user" ]; + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.user = { isNormalUser = true;