From f8b52bf7406d4b2d4df5846560919bbe0c7cacf9 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 31 Oct 2023 21:30:39 -0400 Subject: [PATCH] global/nix: allow all users to use nix Even though it's just me :) --- modules/global/nix.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index 31b2d94..e94cea8 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -5,8 +5,7 @@ with lib; package = pkgs.nixVersions.nix_2_17; settings = { - allowed-users = [ "@wheel" ]; - + allowed-users = [ "*" ]; trusted-users = [ "root" "@wheel" ]; system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];