mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
18 lines
478 B
Nix
18 lines
478 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"${pkgs.swww}/bin/swww-daemon --format xrgb"
|
|
"${pkgs.floorp}/bin/floorp"
|
|
"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"
|
|
"JKPS"
|
|
"ags"
|
|
];
|
|
};
|
|
}
|