Fix home-manager overlay application in flake.nix

This commit is contained in:
2026-04-07 05:22:11 +02:00
parent f2b33079fc
commit cfa8b27f13
2 changed files with 147 additions and 2 deletions

View File

@@ -77,13 +77,16 @@
};
mkHomeConfig = system: home-manager.lib.homeManagerConfiguration {
pkgs = mkPkgs system;
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [ (mkOverlayUnstable system) ];
};
extraSpecialArgs = {
pkgs-unstable = mkPkgsUnstable system;
inherit sops-nix;
};
modules = [
(mkOverlayUnstable system)
./home/default.nix
];
};