Files
dotfiles/modules/sketchybar.nix
2024-05-14 02:08:59 +05:30

24 lines
413 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib; let
cfg = config.programs.sketchybar;
in {
options = {
programs.sketchybar = {
enable = mkEnableOption "sketchybar - a status bar for macOS";
# config = with types; {
# };
};
};
config = {
home.packages = mkIf cfg.enable [pkgs.sketchybar];
# home.file = {
# ".config/sketchybar/sketchybarrc".text = "";
# };
};
}