nix-config/home/waycorner.nix

15 lines
303 B
Nix
Raw Normal View History

2023-06-22 17:13:46 +02:00
{ pkgs, ... }:
{
home.packages = with pkgs; [ waycorner ];
2023-06-11 01:07:55 +02:00
xdg.configFile."waycorner/config.toml".text = /* toml */ ''
[waybar]
enter_command = [ "waybar" ]
exit_command = [ "killall", ".waybar-wrapped" ]
locations = ["right"] # default
size = 40
timeout_ms = 250
'';
2023-06-11 01:07:55 +02:00
}