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-command"
"flakes"
];
nix = {
package = lib.mkForce pkgs.nix;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
}