feat(darwin): add sketchybar to yabai module

This commit is contained in:
reo101 2023-07-29 17:45:58 +03:00
parent 7df97750b7
commit 89d280b7af
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
10 changed files with 288 additions and 9 deletions
modules/nix-darwin/yabai

View file

@ -29,10 +29,24 @@ in
skhdConfig = (builtins.readFile ./skhdrc);
};
# sketchybar = {
# enable = true;
# package = pkgs.sketchybar;
# };
sketchybar = {
enable = true;
package = pkgs.sketchybar;
extraPackages = with pkgs; [
jq
];
config = import ./sketchybar;
};
};
# For sketchybar
homebrew = {
taps = [
"shaunsingh/SFMono-Nerd-Font-Ligaturized"
];
casks = [
"font-sf-mono-nerd-font-ligaturized"
];
};
};