Add devs group to nix trusted-users
Allows dev users to use nix develop, nix build, etc. Previously blocked by daemon access restrictions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
bde2aad939
commit
51e657d43b
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue