dotfiles/modules/sketchybar.nix

28 lines
567 B
Nix
Raw Normal View History

{
2023-02-10 07:46:37 +01:00
config,
lib,
...
}: {
home = lib.mkIf isDarwin {
2023-02-10 07:46:37 +01:00
packages = [pkgs.unstable.sketchybar];
};
launchd = lib.mkIf isDarwin {
agents.sketchybar = {
enable = true;
config = {
2023-02-10 07:46:37 +01:00
ProgramArguments = ["${lib.getExe pkgs.unstable.sketchybar}"];
KeepAlive = true;
RunAtLoad = true;
ProcessType = "Interactive";
Nice = -20;
};
};
};
xdg.configFile = lib.mkIf isDarwin {
"sketchybar" = {
source = config.lib.file.mkOutOfStoreSymlink ./sketchybar;
recursive = true;
};
};
}