NixOS-Config/modules/home/wms/hyprland/autostart/default.nix

27 lines
554 B
Nix
Raw Normal View History

2024-12-08 06:41:06 -05:00
{ pkgs, ... }:
{
wayland.windowManager.hyprland.settings.exec-once = [
"waybar"
# Scratchpads
"foot -a btop -T Gotop btop"
"foot -a music -T Music ncmpcpp"
"foot -a sound -T Sound pulsemixer"
# Deamons and tray
"hyprpaper"
"wl-paste -t text --watch clipman store -P"
"wl-copy"
"mako"
"sunshine"
"${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1"
# Foreground
"librewolf -P Misc --name=MiscBrowser"
"thunderbird"
"vesktop"
"fractal"
"telegram-desktop"
];
}