fix(nix): Fix firefox-darwin overlay is never actually applied

This commit is contained in:
Ahmad Ansori Palembani 2024-10-25 09:15:40 +07:00
parent f596ba43f5
commit d8ad75f69d
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
5 changed files with 10 additions and 9 deletions

View file

@ -18,7 +18,7 @@ in
"ziro@ThiccBook-Pro" =
let
inherit (mkSystem "x86_64-darwin" nixpkgs) system pkgs;
inherit (mkSystem "x86_64-darwin" nixpkgs [inputs.firefox-darwin.overlay]) system pkgs;
vars.name = "ziro";
in
home-manager.lib.homeManagerConfiguration {
@ -27,12 +27,13 @@ in
modules = [
./ziro
./ziro/darwin.nix
../modules/home-manager/floorp.nix
];
};
"ziro@potato" =
let
inherit (mkSystem "x86_64-linux" nixpkgs) system pkgs;
inherit (mkSystem "x86_64-linux" nixpkgs []) system pkgs;
vars.name = "ziro";
in
home-manager.lib.homeManagerConfiguration {