add root
and @wheel
to trusted-users
This commit is contained in:
parent
ff17a11aca
commit
6f468d2d0f
1 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,12 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
{
|
||||
nix = { settings.experimental-features = [ "nix-command" "flakes" ]; };
|
||||
nix = {
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
trusted-users = [ "root" "@wheel" ];
|
||||
};
|
||||
};
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
|
Loading…
Reference in a new issue