Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2025-09-02 19:08:28 +00:00
parent 8bd0682511
commit c19e153657
6 changed files with 61 additions and 32 deletions

View File

@@ -64,29 +64,29 @@
modules = [
inputs.home-manager.darwinModules.home-manager
inputs.nix-homebrew.darwinModules.nix-homebrew
{
nixpkgs.overlays =
commonOverlays
++ darwinOverlays
++ [
(final: prev: {
zjstatus = inputs.zjstatus.packages.${prev.system}.default;
})
];
{
nixpkgs.overlays =
commonOverlays
++ darwinOverlays
++ [
(final: prev: {
zjstatus = inputs.zjstatus.packages.${prev.system}.default;
})
];
nix-homebrew = {
inherit user;
enable = true;
taps = {
"homebrew/homebrew-core" = inputs.homebrew-core;
"homebrew/homebrew-cask" = inputs.homebrew-cask;
"cameroncooke/axe" = inputs.homebrew-axe;
};
mutableTaps = true;
nix-homebrew = {
inherit user;
enable = true;
taps = {
"homebrew/homebrew-core" = inputs.homebrew-core;
"homebrew/homebrew-cask" = inputs.homebrew-cask;
"cameroncooke/axe" = inputs.homebrew-axe;
};
}
./hosts/darwin/${hostname}
];
mutableTaps = true;
};
}
./hosts/darwin/${hostname}
];
}
);