diff --git a/configuration.nix b/configuration.nix index 7eb07fd..94b6efe 100644 --- a/configuration.nix +++ b/configuration.nix @@ -154,8 +154,12 @@ in echo ''; - # Enable Nix flakes - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # Nix settings + nix.settings = { + experimental-features = [ "nix-command" "flakes" ]; + # Allow dev users to use nix daemon (nix develop, nix build, etc.) + trusted-users = [ "root" "@devs" ]; + }; # SSH configuration services.openssh = {