1
0

Update homebrew configuration to perform uninstall

This commit is contained in:
Jip J. Dekker 2023-12-26 22:34:16 +11:00
parent d9742adc77
commit 7cf4a42ccf
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# Open applications # Open applications
alt - return : /Applications/kitty.app/Contents/MacOS/kitty --single-instance -d ~ alt - return : /Users/dekker1/.nix-profile/bin/kitty --single-instance -d ~
# Focus display # Focus display
alt - tab : yabai -m display --focus recent alt - tab : yabai -m display --focus recent

View File

@ -16,6 +16,10 @@ in
homebrew = { homebrew = {
enable = true; enable = true;
onActivation = {
upgrade = true;
cleanup = "zap";
};
casks = pkgs.callPackage ./casks.nix { }; casks = pkgs.callPackage ./casks.nix { };
brews = [ brews = [
"yabai" "yabai"
@ -71,7 +75,6 @@ in
}; };
}; };
}; };
} // import ../shared/home-manager.nix { } // import ../shared/home-manager.nix {
inherit config pkgs lib; inherit config pkgs lib;
}; };