marleyos/modules/home/wayland/hyprland/default.nix

182 lines
4.9 KiB
Nix
Raw Permalink Normal View History

2025-01-09 08:08:30 -08:00
{
lib,
config,
inputs,
pkgs,
2025-01-09 08:08:30 -08:00
...
}: let
2025-01-11 21:11:41 -08:00
inherit (lib.marleyos) enabled;
2025-01-09 08:08:30 -08:00
cfg = config.marleyos.wayland.hyprland;
2025-01-11 21:11:41 -08:00
inherit (config.marleyos.theme) colors;
2025-01-09 08:08:30 -08:00
in {
options.marleyos.wayland.hyprland = {
2025-01-11 20:46:46 -08:00
enable = lib.mkEnableOption "hyprland";
2025-01-09 08:08:30 -08:00
2025-01-11 20:46:46 -08:00
monitors = lib.mkOption {
2025-01-09 08:08:30 -08:00
description = "Monitor configuration.";
type = with lib.types; attrsOf str;
};
2025-01-11 20:46:46 -08:00
mainMonitor = lib.mkOption {
description = "Which monitor to treat as the main for workspace assignment";
type = with lib.types; str;
2025-01-09 08:08:30 -08:00
};
};
2025-01-11 20:46:46 -08:00
config = lib.mkIf cfg.enable {
assertions = [
{
assertion =
if cfg ? monitors
then cfg ? mainMonitor
else true;
message = ''
You have defined monitors but not selected the main monitor. Please
define marleyos.wayland.hyprland.mainMonitor.
'';
}
];
2025-01-11 21:11:41 -08:00
2025-01-09 08:08:30 -08:00
marleyos.programs.wofi.enable = true;
2025-01-11 21:11:41 -08:00
home.pointerCursor.hyprcursor.enable = true;
home.packages = [
inputs.rose-pine-hyprcursor.packages.${pkgs.system}.default
];
2025-01-09 08:08:30 -08:00
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = true;
xwayland.enable = true;
2025-01-11 21:11:41 -08:00
rose-pine = lib.mkIf colors.isRosePine enabled;
settings = let
2025-01-11 20:46:46 -08:00
numMonitors = lib.length (lib.attrNames (cfg.monitors or {}));
workspaces = lib.range 1 10;
wsPerMonitor = 10 / numMonitors;
2025-01-11 20:46:46 -08:00
mainMonWs = lib.range 1 wsPerMonitor;
secondaryWs = lib.subtractLists mainMonWs workspaces;
2025-01-11 20:46:46 -08:00
monitors = lib.mapAttrs (mon: _:
if (mon == (cfg.mainMonitor or ""))
then ""
2025-01-11 20:46:46 -08:00
else lib.replicate wsPerMonitor "${mon}")
(cfg.monitors or {});
secondaryMons = removeAttrs monitors [(cfg.mainMonitor or "")];
2025-01-11 20:46:46 -08:00
monList = lib.concatLists (lib.attrValues secondaryMons);
firstWsToMons =
2025-01-11 20:46:46 -08:00
lib.zipListsWith (mon: ws: {
name = toString ws;
value = mon;
})
monList
secondaryWs;
leftover =
2025-01-11 20:46:46 -08:00
lib.sublist (lib.length monList) (10 - (wsPerMonitor * numMonitors)) secondaryWs;
wsToMons =
firstWsToMons
++ (map (ws: {
name = toString ws;
2025-01-11 20:46:46 -08:00
value = lib.last monList;
})
leftover)
++ (map (ws: {
name = toString ws;
value = cfg.mainMonitor or "";
})
mainMonWs);
2025-01-11 20:46:46 -08:00
wsMons = lib.listToAttrs wsToMons;
in {
2025-01-11 20:46:46 -08:00
monitor = lib.attrValues cfg.monitors;
2025-01-09 08:08:30 -08:00
2025-01-11 20:46:46 -08:00
# TODO: Set this in a default apps module.
"$terminal" = lib.getExe pkgs.wezterm;
2025-01-11 20:46:46 -08:00
"$launcher" = "${lib.getExe pkgs.wofi} --show drun";
2025-01-11 20:46:58 -08:00
# TODO: Set this in a default apps module.
"$browser" = "${lib.getExe pkgs.floorp}";
exec-once = let
browserWs =
if (cfg ? monitors)
then wsPerMonitor + 1
else 2;
in [
"[workspace 1 silent] $terminal"
2025-01-11 20:46:46 -08:00
"[workspace ${toString browserWs} silent] $browser"
];
2025-01-11 21:11:41 -08:00
# Fix WM thinking the cursor is bigger than it is, causing the pointer
# to be offset.
env =
[
"XCURSOR_SIZE,24"
"HYPRCURSOR_SIZE,24"
]
++ (lib.optional colors.isRosePine "HYPRCURSOR_THEME,rose-pine-hyprcursor");
workspace =
2025-01-11 20:46:46 -08:00
lib.mkIf (cfg ? monitors)
(map
(ws: "${toString ws}, monitor:${wsMons."${toString ws}"}")
workspaces);
2025-01-09 08:08:30 -08:00
"$mod" = "SUPER";
bind = [
"$mod, Q, killactive,"
"$mod SHIFT, E, exit,"
"$mod SHIFT, SPACE, togglefloating"
"$mod, RETURN, exec, $terminal"
"$mod, R, exec, $launcher"
"$mod, h, movefocus, l"
"$mod, j, movefocus, d"
"$mod, k, movefocus, u"
"$mod, l, movefocus, r"
"$mod, 1, workspace, 1"
"$mod, 2, workspace, 2"
"$mod, 3, workspace, 3"
"$mod, 4, workspace, 4"
"$mod, 5, workspace, 5"
"$mod, 6, workspace, 6"
"$mod, 7, workspace, 7"
"$mod, 8, workspace, 8"
"$mod, 9, workspace, 9"
"$mod, 0, workspace, 10"
"$mod SHIFT, 1, movetoworkspace, 1"
"$mod SHIFT, 2, movetoworkspace, 2"
"$mod SHIFT, 3, movetoworkspace, 3"
"$mod SHIFT, 4, movetoworkspace, 4"
"$mod SHIFT, 5, movetoworkspace, 5"
"$mod SHIFT, 6, movetoworkspace, 6"
"$mod SHIFT, 7, movetoworkspace, 7"
"$mod SHIFT, 8, movetoworkspace, 8"
"$mod SHIFT, 9, movetoworkspace, 9"
"$mod SHIFT, 0, movetoworkspace, 10"
];
# bindm = [
# "$mod, mouse_down, workspace, e+1"
# "$mod, mouse_up, workspace, e-1"
#
# "$mod, mouse:272, movewindow"
# "$mod, mouse:273, resizewindow"
# ];
};
};
};
}