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

19 lines
499 B
Nix
Raw Normal View History

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