feat(modules/nixos/system): add @wheel to trusted users for nix
This commit is contained in:
parent
798a21690e
commit
511990314c
1 changed files with 11 additions and 1 deletions
|
@ -1,6 +1,16 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = {
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
"pipe-operators"
|
||||
];
|
||||
|
||||
trusted-users = [ "@wheel" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue