2024-08-28 13:52:43 +02:00
|
|
|
{
|
|
|
|
config,
|
2025-04-09 15:31:18 +02:00
|
|
|
lib,
|
2024-08-28 13:52:43 +02:00
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2025-03-26 19:16:28 +01:00
|
|
|
# inherit (config.modules.style) cursor;
|
2025-04-09 15:31:18 +02:00
|
|
|
inherit (lib.meta) getExe;
|
2024-08-28 13:52:43 +02:00
|
|
|
in {
|
2024-11-04 12:35:21 +01:00
|
|
|
programs.hyprland.settings = {
|
|
|
|
# Hyprland settings
|
|
|
|
# Programs which get executed at Hyprland start.
|
|
|
|
exec-once = [
|
2025-04-09 15:31:18 +02:00
|
|
|
"uwsm finalize"
|
|
|
|
|
2025-04-06 21:22:39 +02:00
|
|
|
"hyprctl setcursor BreezeX-RosePine-Linux 32"
|
2025-04-09 15:31:18 +02:00
|
|
|
"hyprctl seterror disable"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
|
|
|
|
"[workspace special:audio; silent;tile] ${pkgs.pwvucontrol}/bin/pwvucontrol"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"${pkgs.swww}/bin/swww-daemon"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2025-04-02 15:31:18 +02:00
|
|
|
"${pkgs.avizo}/bin/avizo-service"
|
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"${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"
|
2025-04-09 15:31:18 +02:00
|
|
|
|
2025-04-09 15:31:18 +02:00
|
|
|
"${getExe pkgs.hyprlock}"
|
2024-11-04 12:35:21 +01:00
|
|
|
];
|
2024-08-28 13:52:43 +02:00
|
|
|
};
|
|
|
|
}
|