From c896d5509dcb035d4e33ffad349d3aeddf2fa2ca Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 22 Oct 2025 17:28:30 +1100 Subject: [PATCH] feat: restrict nix package manager to wheel group --- modules/nixos/features/nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nixos/features/nix.nix b/modules/nixos/features/nix.nix index 498861b..deaf050 100644 --- a/modules/nixos/features/nix.nix +++ b/modules/nixos/features/nix.nix @@ -7,6 +7,7 @@ nixpkgs.config.allowUnfree = true; nix = { + allowedUsers = [ "@wheel" ]; gc = { automatic = true; dates = "weekly";