fix: homebrew immutable taps managed by nix
This commit is contained in:
parent
8e9f2496c7
commit
587213a5af
2 changed files with 11 additions and 10 deletions
|
|
@ -81,11 +81,11 @@
|
|||
"homebrew/homebrew-createzap" = inputs.homebrew-createzap;
|
||||
"d12frosted/homebrew-emacs-plus" = inputs.homebrew-emacs-plus;
|
||||
"brewsci/homebrew-bio" = inputs.homebrew-brewsci-bio;
|
||||
"nikitabobko/tap" = inputs.homebrew-nikitabobko;
|
||||
# "LouisBrunner/valgrind" = inputs.homebrew-valgrind;
|
||||
"nikitabobko/homebrew-tap" = inputs.homebrew-nikitabobko;
|
||||
"LouisBrunner/homebrew-valgrind" = inputs.homebrew-valgrind;
|
||||
}
|
||||
];
|
||||
mutableTaps = true; # true to enable valgrind
|
||||
mutableTaps = false;
|
||||
};
|
||||
homebrew = {
|
||||
enable = true;
|
||||
|
|
@ -372,12 +372,12 @@
|
|||
];
|
||||
})
|
||||
(lib.mkIf config.custom.brew.valgrind {
|
||||
# homebrew.brews = [
|
||||
# {
|
||||
# name = "LouisBrunner/valgrind/valgrind";
|
||||
# args = ["HEAD"];
|
||||
# }
|
||||
# ];
|
||||
homebrew.brews = [
|
||||
{
|
||||
name = "LouisBrunner/valgrind/valgrind";
|
||||
args = [ "HEAD" ];
|
||||
}
|
||||
];
|
||||
})
|
||||
(lib.mkIf config.custom.brew.hammerspoon {
|
||||
homebrew.casks = [
|
||||
|
|
|
|||
|
|
@ -63,7 +63,8 @@
|
|||
ninja = true;
|
||||
clang-format = true;
|
||||
marta = true;
|
||||
valgrind = true;
|
||||
# broken on aarch64-darwin
|
||||
valgrind = false;
|
||||
hammerspoon = true;
|
||||
aerospace = true;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue