nichts/modules/wms/wayland/hypr/land.nix

334 lines
11 KiB
Nix
Raw Normal View History

2024-05-22 14:29:45 +02:00
{
config,
pkgs,
lib,
2024-07-21 20:14:19 +02:00
inputs',
2024-05-22 14:29:45 +02:00
...
}: let
2024-07-20 13:56:02 +02:00
cfg = config.modules.usrEnv.desktops.hyprland;
2024-05-26 02:36:36 +02:00
inherit (config.modules.other.system) username;
2024-08-15 23:13:09 +02:00
inherit (config.modules.style) cursor;
inherit (config.modules.system.hardware) monitors;
2024-05-22 14:29:45 +02:00
inherit
2024-07-21 20:14:19 +02:00
(inputs'.split-monitor-workspaces.packages)
2024-05-22 14:29:45 +02:00
split-monitor-workspaces
;
inherit (lib) imap0 flatten optionalString mkIf mkDefault mapAttrsToList;
inherit (builtins) map genList attrNames toString;
2024-05-04 15:00:14 +02:00
in {
# we disable the default hyprland module
disabledModules = ["programs/hyprland.nix"];
2024-08-07 23:31:14 +02:00
config = mkIf cfg.enable {
2024-08-15 23:13:09 +02:00
programs.hyprland = {
enable = true;
2024-08-17 11:19:57 +02:00
inherit (cfg) package portalPackage;
2024-08-15 23:13:09 +02:00
};
2024-05-18 20:07:17 +02:00
# xdg Portal
xdg.portal = {
enable = true;
2024-08-17 11:19:57 +02:00
configPackages = mkDefault [
cfg.portalPackage
2024-07-10 22:10:54 +02:00
];
extraPortals = [
pkgs.xdg-desktop-portal-gtk
cfg.portalPackage
];
2024-07-22 22:46:11 +02:00
config = {
common.default = ["hyprland"];
};
};
home-manager.users.${username} = {
wayland.windowManager.hyprland = {
enable = true;
2024-08-16 16:03:47 +02:00
inherit (cfg) package;
2024-07-22 22:46:11 +02:00
2024-05-18 20:07:17 +02:00
# Split-monitor-workspaces provides awesome-like workspace behaviour
2024-05-25 15:13:09 +02:00
plugins = [
split-monitor-workspaces
];
2024-07-22 22:46:11 +02:00
2024-05-18 20:07:17 +02:00
# Xwayland for X applications
xwayland.enable = true;
2024-05-18 20:07:17 +02:00
# No idea why I set this
systemd = {
2024-05-05 14:01:33 +02:00
enable = true;
2024-05-22 14:29:45 +02:00
variables = ["--all"];
};
2024-05-18 20:07:17 +02:00
# Hyprland settings
settings = {
"$mainMod" = "SUPER";
2024-05-18 20:07:17 +02:00
# Monitor config
# monitor = [
# "eDP-1,1920x1080,0x0,1"
# # "DP-2,1920x1080,0x0,1"
# # "HDMI-A-2,1920x1080,1920x0,1"
# # "HDMI-A-1,1920x1080,3840x0,1"
# # Had the shadow monitor bug, so had to disable all unknown monitors.
# "Unknown-1,disable"
# ];
# Thanks Poz for inspiration, using an attrSet is actually much smarter
# than using a normal list.
monitor =
mapAttrsToList (
name: m: let
w = toString m.resolution.x;
h = toString m.resolution.y;
refreshRate = toString m.refreshRate;
x = toString m.position.x;
y = toString m.position.y;
scale = toString m.scale;
in "${name},${w}x${h}@${refreshRate},${x}x${y},${scale}"
)
monitors;
# INFO: This is a custom function to map all of my monitors to workspaces.
# Since I use split-monitor-workspaces, I map 10 workspaces to each monitor
# and set the first one to be the default one.
# To be able to use this for a varying amount of monitors we do some nasty trickery:
workspace =
# We're creating several lists of workspace assignments, one for each monitor,
# and have to merge them into one big list.
(flatten
# We then use imap0 insted of map because imap0 starts indexing at zero as oppsed to one with map.
(imap0 (monitorIndex: monitorName: (
map (
i: let
# we define our own modulo operation for this,
# since only the first workspace on each monitor is the default workspace.
mod = a: b: a - (b * (a / b));
workspace = toString i;
isDefault = (mod i 10) == 1; # 11, 21, 31, ...
in "${workspace}, monitor:${monitorName}${optionalString isDefault ", default:true"}"
)
# we generate a list of 10 elements for each monitor. We have to add 1 each time since genList starts indexing at 0.
# also, we add the monitorIndex * 10 to get 10 workspaces for each individual monitor.
(genList (i: i + 1 + (10 * monitorIndex)) 10)
))
# our attrSet of different monitors
(attrNames monitors)))
# These are my two special workspaces
++ [
"special:nixos, decorate:false"
"special:keepassxc, decorate:false"
];
2024-08-28 12:52:57 +02:00
2024-05-18 20:07:17 +02:00
# Input settings
input = {
2024-08-08 10:21:47 +02:00
kb_layout = "de,us";
kb_variant = ",colemak_dh_wide";
2024-08-09 00:17:17 +02:00
kb_options = "grp:rctrl_rshift_toggle";
2024-05-05 21:33:33 +02:00
follow_mouse = true;
2024-07-22 22:46:11 +02:00
repeat_rate = 50;
2024-07-30 19:24:53 +02:00
repeat_delay = 200;
2024-07-22 22:46:11 +02:00
2024-07-10 22:10:54 +02:00
touchpad = {
disable_while_typing = true;
};
};
2024-08-07 23:31:14 +02:00
general = {
2024-08-01 01:18:12 +02:00
gaps_in = 0;
gaps_out = 0;
2024-05-19 03:10:49 +02:00
border_size = 2;
2024-07-22 22:46:11 +02:00
no_border_on_floating = true;
};
2024-08-07 23:31:14 +02:00
2024-05-18 20:07:17 +02:00
#Decoration settings
decoration = {
2024-08-01 01:18:12 +02:00
rounding = 0;
blur = {
enabled = true;
size = 3;
passes = 2;
};
drop_shadow = 1;
shadow_range = 15;
shadow_render_power = 2;
shadow_ignore_window = 1;
shadow_offset = "2 4";
shadow_scale = 1;
};
2024-05-22 14:29:45 +02:00
# Bezier curves for aninmations.
2024-05-18 20:07:17 +02:00
# Generate your own at https://www.cssportal.com/css-cubic-bezier-generator/
bezier = [
"dupa, 0.1, 0.9, 0.1, 1.05"
];
2024-05-18 20:07:17 +02:00
# Hyprland anomations, using the above bezier curves
animations = {
enabled = false;
animation = [
"windows, 1, 4, dupa, popin"
"windowsOut, 1, 4, dupa, slide"
"border, 1, 15, default"
"fade, 1, 10, default"
"workspaces, 1, 5, dupa, slidevert"
];
};
2024-08-07 23:31:14 +02:00
2024-05-22 14:29:45 +02:00
dwindle = {no_gaps_when_only = true;};
2024-05-14 23:47:14 +02:00
2024-07-13 22:08:21 +02:00
cursor = {
hide_on_key_press = true;
2024-07-21 13:18:00 +02:00
no_hardware_cursors = true;
2024-07-13 22:08:21 +02:00
};
2024-08-07 23:31:14 +02:00
misc = {
enable_swallow = true;
2024-05-21 22:30:34 +02:00
swallow_regex = "foot";
focus_on_activate = true;
vrr = 1;
vfr = true;
animate_manual_resizes = false;
animate_mouse_windowdragging = false;
force_default_wallpaper = 0;
};
2024-08-07 23:31:14 +02:00
2024-05-18 20:07:17 +02:00
# Window rules for some programs.
windowrulev2 = [
"float, class:^(Tor Browser)$"
"float, class:^(mpv)$"
"float, class:^(imv)$"
"float, title:^(Picture-in-Picture)$"
"float, title:^(.*)(Choose User Profile)(.*)$"
"float, title:^(blob:null/)(.*)$"
"float, class:^(xdg-desktop-portal-gtk)$"
"float, class:^(code), title: ^(Open*)"
"size 70% 70%, class:^(code), title: ^(Open*)"
"center, class: ^(code), title: ^(Open*)"
"float, class:^(org.keepassxc.KeePassXC)$"
];
2024-08-07 23:31:14 +02:00
2024-05-18 20:07:17 +02:00
# Keybinds
bind =
# workspaces
2024-05-18 20:07:17 +02:00
# split-workspace is because of the split-workspace plugin
map (
i: let
mod = a: b: a - (b * (a / b));
key = toString (mod i 10);
workspace = toString i;
in "$mainMod, ${key}, split-workspace, ${workspace}"
) (genList (i: i + 1) 10)
# split-movetoworkspacesilent
++ map (
i: let
mod = a: b: a - (b * (a / b));
key = toString (mod i 10);
workspace = toString i;
in "$mainMod SHIFT, ${key}, split-movetoworkspacesilent, ${workspace}"
) (genList (i: i + 1) 10)
++ [
"$mainMod, RETURN, exec, ${pkgs.foot}/bin/foot"
"$mainMod, Q, killactive"
"$mainMod, F, fullscreen, 0"
"$mainMod, D, exec, ${pkgs.procps}/bin/pkill fuzzel || ${pkgs.fuzzel}/bin/fuzzel"
"$mainMod, SPACE, togglefloating, active"
2024-07-06 22:13:28 +02:00
# Move Windows
"$mainMod SHIFT, H, movewindow, l"
"$mainMod SHIFT, J, movewindow, d"
"$mainMod SHIFT, K, movewindow, u"
"$mainMod SHIFT, L, movewindow, r"
2024-07-21 15:11:55 +02:00
# Screenshotting
"$mainMod, S, exec, ${pkgs.grimblast}/bin/grimblast copy area"
2024-07-21 15:11:55 +02:00
# File manager
"$mainMod, E, exec, ${pkgs.xfce.thunar}/bin/thunar"
2024-07-22 22:46:11 +02:00
# Toggle the three different special workspaces.
"$mainMod, N, togglespecialworkspace, nixos"
"$mainMod, X, togglespecialworkspace, keepassxc"
2024-05-18 20:07:17 +02:00
# Reload hyprland
"$mainMod, R, exec, ${cfg.package}/bin/hyprctl reload"
2024-07-22 22:46:11 +02:00
# Restart waybar
"$mainMod CONTROL, B, exec, ${pkgs.procps}/bin/pkill waybar || ${pkgs.waybar}/bin/waybar"
];
2024-07-22 22:46:11 +02:00
binde = [
# window focus
"$mainMod, H, movefocus, l"
"$mainMod, J, movefocus, d"
2024-05-17 15:52:06 +02:00
"$mainMod, K, movefocus, u"
"$mainMod, L, movefocus, r"
];
2024-07-22 22:46:11 +02:00
2024-05-18 20:07:17 +02:00
# Media controls
bindl = let
play-pause = "${pkgs.playerctl}/bin/playerctl play-pause";
stop = "${pkgs.playerctl}/bin/playerctl stop";
prev = "${pkgs.playerctl}/bin/playerctl previous";
next = "${pkgs.playerctl}/bin/playerctl next";
toggle-mute = "${pkgs.pamixer}/bin/pamixer --toggle-mute";
in [
", XF86AudioMedia, exec, ${play-pause}"
", XF86AudioPlay, exec, ${play-pause}"
", XF86AudioStop, exec, ${stop}"
", XF86AudioPrev, exec, ${prev}"
", XF86AudioNext, exec, ${next}"
", XF86AudioMute, exec, ${toggle-mute}"
];
2024-05-05 21:33:33 +02:00
# locked + repeat
bindle = let
volume_up = "${pkgs.pamixer}/bin/pamixer -ui 5";
volume_down = "${pkgs.pamixer}/bin/pamixer -ud 5";
2024-08-28 12:52:57 +02:00
brightness_up = "${pkgs.brightnessctl}/bin/brightnessctl set +10%";
brightness_down = "${pkgs.brightnessctl}/bin/brightnessctl set 10%-";
in [
", XF86AudioRaiseVolume, exec, ${volume_up}"
", XF86AudioLowerVolume, exec, ${volume_down}"
2024-08-28 12:52:57 +02:00
", XF86MonBrightnessUp, exec, ${brightness_up}"
", XF86MonBrightnessDown, exec, ${brightness_down}"
];
2024-05-18 20:07:17 +02:00
# Mouse settings
bindm = [
"$mainMod, mouse:272, movewindow"
"$mainMod, mouse:273, resizewindow"
];
2024-07-22 22:46:11 +02:00
2024-05-18 20:07:17 +02:00
# Some more movement-related settings
binds = {
pass_mouse_when_bound = false;
movefocus_cycles_fullscreen = false;
};
2024-08-28 12:52:57 +02:00
2024-05-18 20:07:17 +02:00
# Programs which get executed at Hyprland start.
exec-once = [
2024-08-15 23:13:09 +02:00
"hyprctl setcursor ${cursor.name} ${toString cursor.size}"
#start waybar
2024-07-22 22:46:11 +02:00
"${pkgs.waybar}/bin/waybar"
2024-05-05 21:33:33 +02:00
# run persistent special workspace windows
2024-08-21 23:11:59 +02:00
"[workspace special:nixos; silent;tile] ${pkgs.foot}/bin/foot -D ~/projects/nichts"
2024-05-21 22:30:34 +02:00
2024-05-15 23:47:37 +02:00
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
2024-05-05 21:33:33 +02:00
2024-08-21 23:11:59 +02:00
"${pkgs.swww}/bin/swww-daemon"
2024-07-22 22:46:11 +02:00
2024-08-21 23:11:59 +02:00
"${pkgs.wlsunset}/bin/wlsunset -S 06:00 -s 20:00"
];
2024-05-05 21:33:33 +02:00
2024-07-23 00:00:26 +02:00
plugin = {
split-monitor-workspaces = {
keep-focued = true;
count = 10;
};
};
};
2024-05-05 14:01:33 +02:00
};
};
2024-05-04 15:00:14 +02:00
};
}