1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Trust sudo users

This commit is contained in:
RGBCube 2023-11-25 19:56:03 +03:00
parent e047927075
commit 425325de0c
No known key found for this signature in database
2 changed files with 26 additions and 19 deletions

View file

@ -100,10 +100,17 @@
nix.optimise.automatic = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"@wheel"
];
};
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ fenix.overlays.default ];