nyx/modules/home-manager/hypr/hyprland/execs.nix

19 lines
478 B
Nix
Raw Normal View History

2024-12-20 15:11:42 +02:00
{
pkgs,
config,
inputs,
...
}: {
2024-08-30 23:18:40 +03:00
wayland.windowManager.hyprland.settings = {
exec-once = [
"${pkgs.swww}/bin/swww-daemon --format xrgb"
2024-10-23 18:09:21 +03:00
"${pkgs.floorp}/bin/floorp"
2025-01-14 16:33:34 +02:00
"sleep 1; ${pkgs.vesktop}/bin/vesktop --ozone-platform-hint=auto --enable-blink-features=MiddleClickAutoscroll --enable-wayland-ime=true"
"wl-paste --type text --watch cliphist store"
"wl-paste --type image --watch cliphist store"
2024-10-23 18:39:51 +03:00
"JKPS"
"ags"
2024-08-30 23:18:40 +03:00
];
};
}