2024-08-28 13:52:43 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
inherit (config.modules.other.system) username;
|
|
|
|
inherit (config.modules.style) cursor;
|
|
|
|
inherit (builtins) toString;
|
|
|
|
in {
|
|
|
|
home-manager.users.${username} = {
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
|
|
# Hyprland settings
|
|
|
|
# Programs which get executed at Hyprland start.
|
|
|
|
exec-once = [
|
|
|
|
"hyprctl setcursor ${cursor.name} ${toString cursor.size}"
|
|
|
|
#start waybar
|
|
|
|
"${pkgs.waybar}/bin/waybar"
|
2024-10-06 12:34:00 +02:00
|
|
|
# "${pkgs.ianny}/bin/ianny"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
|
|
|
# run persistent special workspace windows
|
|
|
|
"[workspace special:nixos; silent;tile] ${pkgs.foot}/bin/foot -D ~/projects/nichts"
|
|
|
|
|
|
|
|
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
|
2024-09-22 19:21:53 +02:00
|
|
|
"[workspace special:audio; silent;tile] ${pkgs.pavucontrol}/bin/pavucontrol"
|
|
|
|
"[workspace special:audio; silent;tile] ${pkgs.pwvucontrol}/bin/pwvucontrol"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
|
|
|
"${pkgs.swww}/bin/swww-daemon"
|
|
|
|
|
|
|
|
"${pkgs.wlsunset}/bin/wlsunset -S 06:00 -s 20:00"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|