Files
nixos/packages/hyprland/config/execs.nix
T
2025-07-16 18:04:37 -05:00

26 lines
628 B
Nix

{
config,
pkgs,
myConfig,
...
}: {
wayland.windowManager.hyprland.settings = {
exec-once = [
"[workspace special:steam silent] steam -start steam://open/bigpicture"
"[workspace 20 silent] kitty --single-instance --hold fastfetch"
"[workspace 20 silent] firefox"
"[workspace 1] kitty --single-instance --hold -e fish -C fastfetch"
"hyprctl setcursor Bibata-Modern-Ice 24"
"solaar -w hide"
# "sunshine"
# "moondeck-buddy"
"caelestia shell"
"wl-paste --type text --watch cliphist store"
"wl-paste --type image --watch cliphist store"
];
};
}