Apparently this is needed on non nix systems

This commit is contained in:
Jimbo 2025-01-11 14:11:10 -05:00
parent 9f72452896
commit 77ded1d9ee

View file

@ -1,7 +1,10 @@
{ ... }: { pkgs, ... }:
{ {
nix.settings.experimental-features = [ nix = {
package = pkgs.nix;
settings.experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
]; ];
};
} }