nichts/modules/wms/wayland/hyprland/exec.nix

28 lines
713 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: let
2025-03-26 19:16:28 +01:00
# inherit (config.modules.style) cursor;
inherit (builtins) toString;
in {
programs.hyprland.settings = {
# Hyprland settings
# Programs which get executed at Hyprland start.
exec-once = [
2025-04-06 21:22:39 +02:00
"hyprctl setcursor BreezeX-RosePine-Linux 32"
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
"[workspace special:audio; silent;tile] ${pkgs.pwvucontrol}/bin/pwvucontrol"
"${pkgs.swww}/bin/swww-daemon"
2025-04-02 15:31:18 +02:00
"${pkgs.avizo}/bin/avizo-service"
"${pkgs.wlsunset}/bin/wlsunset -S 06:00 -s 20:00"
"${pkgs.lxqt.lxqt-policykit}/bin/lxqt-policykit-agent"
2024-11-06 10:50:08 +01:00
"hyprctl dispatch split-workspace 1"
];
};
}