mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 15:55:08 +00:00
19 lines
394 B
Nix
19 lines
394 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"${pkgs.swww}/bin/swww-daemon --format xrgb"
|
|
"${pkgs.floorp}/bin/floorp"
|
|
"${pkgs.qbittorrent}/bin/qbittorrent"
|
|
"vesktop"
|
|
"wl-paste --type text --watch cliphist store"
|
|
"wl-paste --type image --watch cliphist store"
|
|
"JKPS"
|
|
"ags"
|
|
];
|
|
};
|
|
}
|