From f53f2b1265a368dfb561a8b9b9ef2766d9a574a1 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Tue, 25 Jul 2023 17:26:04 +0200 Subject: [PATCH] flake: restrict nix access --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index cd3c0bc..a72dbb5 100644 --- a/flake.nix +++ b/flake.nix @@ -45,6 +45,7 @@ import ./hosts { # Imports ./hosts/default.nix inherit (nixpkgs) lib; inherit inputs nixpkgs nixpkgs-stable nixos-hardware home-manager nur user location agenix jovian-nixos; # Also inherit home-manager so it does not need to be defined here. + nix.allowedUsers = [ "@wheel" ]; } ); };