feat(modules/nixos/system): add @wheel to trusted users for nix

This commit is contained in:
Mohammad Rafiq 2025-05-19 18:35:58 +08:00
parent 798a21690e
commit 511990314c
No known key found for this signature in database

View file

@ -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" ];
};
};
}