diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-08 14:59:03 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-08 15:36:32 -0800 |
commit | 48ea2837adff1483d6d5e8dd6f65611914ddda88 (patch) | |
tree | 8adb236371b1b3db63d450bb98b583b5d0f67cc6 /nix/machines/vm-shared.nix | |
parent | refactor overall configuration (diff) | |
download | world-48ea2837adff1483d6d5e8dd6f65611914ddda88.tar.gz |
more refactoring
Diffstat (limited to '')
-rw-r--r-- | nix/machines/vm-shared.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/nix/machines/vm-shared.nix b/nix/machines/vm-shared.nix index 04eedf0..acff195 100644 --- a/nix/machines/vm-shared.nix +++ b/nix/machines/vm-shared.nix @@ -3,11 +3,10 @@ nix = { package = pkgs.nixVersions.latest; - extraOptions = '' - experimental-features = nix-command flakes - keep-outputs = true - keep-derivations = true - ''; + settings = { + trusted-users = [ "@admin" "fcuny" ]; + experimental-features = [ "nix-command" "flakes" ]; + }; }; # Use the systemd-boot EFI boot loader. |