re-enable the nix command (nix build, nix flake, etc)

it was accidentally disabled in in the move away from configuration.nix
This commit is contained in:
colin 2022-06-14 14:20:54 -07:00
parent a9d167cf14
commit faf0cf691c
2 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,7 @@
imports = [
./fs.nix
./home-manager.nix
./nix-cache.nix
./nix.nix
./secrets.nix
./users.nix
./vpn.nix

View File

@ -13,4 +13,9 @@
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# allow `nix flake ...` command
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}