fix(nix): Fix home-manager config

This commit is contained in:
Ahmad Ansori Palembani 2024-11-03 12:42:55 +07:00
parent 29a5503aa4
commit 85880d22b1
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -2,7 +2,7 @@
let let
mkSystem = import ../lib/mkSystem.nix; mkSystem = import ../lib/mkSystem.nix;
mkBrew = import ../../overlays/darwin/brew.nix mkBrew = import ../overlays/darwin/brew.nix;
in in
{ {
# Host list # Host list
@ -27,7 +27,7 @@ in
unstable = nixpkgs-unstable; unstable = nixpkgs-unstable;
extraOverlays = [ extraOverlays = [
inputs.firefox-darwin.overlay inputs.firefox-darwin.overlay
(mkBrew { inherit system brew-api; nixpkgs = nixpkgs-stable; }) (mkBrew { inherit system; brew-api = inputs.brew-api; nixpkgs = nixpkgs-stable; })
]; ];
} }
) pkgs pkgs-unstable; ) pkgs pkgs-unstable;