{ lib, config, pkgs, ... }: let inherit (lib) mkIf mkEnableOption; inherit (builtins) replaceStrings; cfg = config.horseman.wm.hyprland; colors = config.horseman.catppuccin.colors; in { imports = [ ./options.nix ./keybindings.nix ./animations.nix ./waybar.nix ]; options = { horseman.wm.hyprland.enable = mkEnableOption "Hyprland"; }; config = mkIf cfg.enable { programs.hyprland = { enable = true; xwayland.enable = true; }; security.polkit.enable = true; environment.systemPackages = with pkgs; [ brightnessctl # Needed for brightness bindings hypridle # Sleep hyprlock # Lock hyprpaper # Wallpaper hyprpicker # RGB Picker hyprpolkitagent # Authentication popup hyprshot # Screenshot playerctl # Media control pulsemixer # Audio frontend wl-clipboard # Clipboard wofi # Launcher xdg-desktop-portal-hyprland # XDG Portal (needed but idk why) ]; horseman.apps.visual.safeeyes.enable = true; horseman.hardware.keyd.enable = true; horseman.wm.hyprland.config = { execOnce = [ "hyprpaper" "hypridle" "hyprpaper" "systemctl --user start hyprpolkitagent" "waybar" "safeeyes" "snixembed" ]; env = [ "XCURSOR_SIZE,24" "HYPRCURSOR_SIZE,24" ]; windowrules = [ "suppressevent maximize, class:.*" "nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0" "float, initialTitle:^Picture-in-Picture$" "center, initialTitle:^Picture-in-Picture$" "size 33% 33%, initialTitle:^Picture-in-Picture$" "float, initialClass:CImg" "float, initialTitle:GLFW" "tile, initialTitle:sxiv" "tile, initialTitle:Godot" "fullscreen, initialTitle:.*QEMU.*" ]; general = { gapsIn = 5; gapsOut = 5; borderSize = 2; resizeOnBorder = true; allowTearing = false; col.activeBorder = replaceStrings [" "] [""] colors.lavender-rgb; col.inactiveBorder = replaceStrings [" " ")" "rgb"] ["" ",0.25)" "rgba"] colors.lavender-rgb; # Make transparent layout = "dwindle"; }; decoration = { rounding = 10; activeOpacity = 1.0; inactiveOpacity = 1.0; dimSpecial = 0.4; shadow.enabled = false; blur = { enabled = true; size = 25; passes = 3; }; }; dwindle = { pseudotile = true; preserveSplit = true; }; master = { newStatus = "master"; }; misc = { forceDefaultWallpaper = 0; keyPressEnablesDPMS = true; newWindowTakesOverFullscreen = 2; enableSwallow = true; swallowRegex = "^kitty$"; }; input = { kbLayout = "us"; repeatRate = 50; repeatDelay = 300; followMouse = 1; sensitivity = 0.0; touchpad.naturalScroll = true; numlockByDefault = true; touchpad.dragLock = true; }; gestures = { workspaceSwipe = false; }; group = { autoGroup = false; dragIntoGroup = 1; col = { borderActive = config.horseman.wm.hyprland.config.general.col.activeBorder; # I don't wanna believe this can't be done better :( borderInactive = config.horseman.wm.hyprland.config.general.col.inactiveBorder; borderLockedActive = config.horseman.wm.hyprland.config.general.col.activeBorder; borderLockedInactive = config.horseman.wm.hyprland.config.general.col.inactiveBorder; }; groupbar = { fontSize = 14; height = 26; keepUpperGap = true; }; }; binds = { workspaceCenterOn = 1; dragThreshold = 0; hideSpecialOnWorkspaceChange = true; }; ecosystem = { noDonationNag = true; }; monitors = { defaultMonitor = true; }; sleep = { lockCommand = "pidof hyprlock || hyprlock"; listeners = [ { timeout = 900; onTimeout = "hyprctl dispatch dpms off"; onResume = "hyprctl dispatch dpms on"; } { timeout = 910; onTimeout = "loginctl lock-session"; } ]; }; }; services.logind.extraConfig = '' HandlePowerKey=ignore ''; }; }