nix-config/home/waycorner.nix
Donovan Glover 877ce570bf
meta: Move home modules up one directory
This is possible since each home-manager module is now its own
self-contained nix file.
2023-06-16 12:13:26 -04:00

20 lines
628 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [ waycorner ];
xdg.configFile."waycorner/config.toml".text = /* toml */ ''
[application_launcher]
enter_command = [ "hyprctl", "dispatch", "workspace", "empty" ]
exit_command = [ "${pkgs.lnch}/bin/lnch", "${pkgs.rofi}/bin/rofi", "-show", "drun" ]
locations = ["top_right"] # default
size = 10
timeout_ms = 250
[show_desktop]
enter_command = [ "hyprctl", "dispatch", "workspace", "empty" ]
exit_command = [ "hyprctl", "dispatch", "workspace", "previous"]
locations = ["bottom_right"] # default
size = 10
timeout_ms = 250
'';
}