From 9dad7febc28c94c1f638c58e22ce78836065008f Mon Sep 17 00:00:00 2001 From: Bad Date: Fri, 17 Jun 2022 18:53:13 +0200 Subject: [PATCH] Fix nix allowed users --- profiles/core/default.nix | 1 - profiles/ssh/default.nix | 3 --- 2 files changed, 4 deletions(-) diff --git a/profiles/core/default.nix b/profiles/core/default.nix index 0d960b4..665bd89 100644 --- a/profiles/core/default.nix +++ b/profiles/core/default.nix @@ -100,7 +100,6 @@ in useSandbox = true; # give root and @wheel special privileges with nix - allowedUsers = [ "@wheel" ]; trustedUsers = [ "root" "@wheel" ]; # Generally useful nix option defaults diff --git a/profiles/ssh/default.nix b/profiles/ssh/default.nix index 233bc11..2302428 100644 --- a/profiles/ssh/default.nix +++ b/profiles/ssh/default.nix @@ -7,7 +7,4 @@ openFirewall = true; passwordAuthentication = false; }; - nix.allowedUsers = [ - "nix-ssh" - ]; }