Finally fix standalone home-manager

This commit is contained in:
Jimbo 2025-01-22 13:18:35 -05:00
parent d687e6d6c4
commit 41055434ce

View file

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