27 lines
554 B
Nix
27 lines
554 B
Nix
|
{ 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"
|
||
|
];
|
||
|
}
|