2025-03-01 01:28:07 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
cfg = config.marleyos.wayland.niri;
|
|
|
|
in {
|
|
|
|
options.marleyos.wayland.niri = {
|
|
|
|
enable = lib.mkEnableOption "niri";
|
2025-03-01 18:20:25 +00:00
|
|
|
|
|
|
|
monitors = lib.mkOption {
|
|
|
|
type = with lib.types; nullOr (listOf str);
|
|
|
|
default = null;
|
|
|
|
description = "The monitors to configure";
|
|
|
|
};
|
2025-03-01 01:28:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
marleyos = {
|
2025-03-01 04:28:44 +00:00
|
|
|
wayland.enable = true;
|
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
programs = {
|
|
|
|
waybar.enable = true;
|
|
|
|
wlogout.enable = true;
|
|
|
|
fuzzel.enable = true;
|
2025-03-04 03:29:13 +00:00
|
|
|
xwayland-satellite.enable = true;
|
2025-03-01 01:28:07 +00:00
|
|
|
};
|
|
|
|
services = {
|
2025-03-02 20:10:28 +00:00
|
|
|
swaybg.enable = true;
|
2025-03-01 01:28:07 +00:00
|
|
|
swaync.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.niri = {
|
|
|
|
# Auto-enabled by the nixos module
|
|
|
|
# enable = true;
|
|
|
|
|
2025-03-01 02:45:55 +00:00
|
|
|
settings = let
|
|
|
|
cmd = command: {command = [command];};
|
|
|
|
in {
|
2025-03-01 01:45:12 +00:00
|
|
|
prefer-no-csd = true;
|
|
|
|
hotkey-overlay.skip-at-startup = true;
|
|
|
|
|
2025-03-04 03:29:13 +00:00
|
|
|
environment = {
|
|
|
|
# For some reason this won't set properly from home.sessionVariables.
|
|
|
|
DISPLAY = ":0";
|
|
|
|
};
|
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Startup Programs ###
|
2025-03-01 18:20:25 +00:00
|
|
|
spawn-at-startup = let
|
|
|
|
inherit (config.marleyos) apps;
|
|
|
|
in [
|
|
|
|
{command = ["sh" "-c" "${lib.getExe apps.terminal} -e tmux new -s main -A"];}
|
|
|
|
(cmd (lib.getExe apps.browser))
|
2025-03-02 02:11:04 +00:00
|
|
|
(cmd (lib.getExe apps.email))
|
2025-03-01 18:20:25 +00:00
|
|
|
];
|
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Layout ###
|
2025-03-01 22:30:15 +00:00
|
|
|
layout = let
|
|
|
|
gradient = {
|
2025-03-02 18:41:56 +00:00
|
|
|
gradient = with config.lib.stylix.colors.withHashtag; {
|
|
|
|
from = base08;
|
|
|
|
to = base0D;
|
2025-03-01 22:30:15 +00:00
|
|
|
angle = 90;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
2025-03-01 01:28:07 +00:00
|
|
|
gaps = 16;
|
|
|
|
center-focused-column = "never";
|
|
|
|
|
|
|
|
preset-column-widths = [
|
|
|
|
{proportion = 0.33333;}
|
|
|
|
{proportion = 0.5;}
|
|
|
|
{proportion = 0.66667;}
|
|
|
|
];
|
|
|
|
|
|
|
|
default-column-width = {proportion = 0.5;};
|
|
|
|
|
|
|
|
border = {
|
|
|
|
width = 4;
|
2025-03-02 18:41:56 +00:00
|
|
|
active = gradient;
|
2025-03-01 01:28:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
shadow = {
|
|
|
|
softness = 30;
|
|
|
|
spread = 5;
|
|
|
|
|
|
|
|
offset = {
|
|
|
|
x = 0;
|
|
|
|
y = 5;
|
|
|
|
};
|
|
|
|
|
|
|
|
color = "#0007";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Screenshots ###
|
2025-03-01 01:28:07 +00:00
|
|
|
screenshot-path = "~/pictures/screenshots/%Y-%m-%d %H-%M-%S.png";
|
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Workspaces ###
|
2025-03-02 02:11:04 +00:00
|
|
|
workspaces = {
|
|
|
|
"01-main" = {
|
|
|
|
open-on-output = builtins.elemAt cfg.monitors 0;
|
|
|
|
name = "main";
|
|
|
|
};
|
|
|
|
"02-web" = {
|
|
|
|
open-on-output = builtins.elemAt cfg.monitors 1;
|
|
|
|
name = "web";
|
|
|
|
};
|
|
|
|
"03-email" = {
|
|
|
|
open-on-output = builtins.elemAt cfg.monitors 1;
|
|
|
|
name = "email";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Window Rules ###
|
2025-03-01 18:20:25 +00:00
|
|
|
window-rules =
|
|
|
|
[
|
|
|
|
{
|
|
|
|
matches = [{app-id = "^org\.wezfurlong\.wezterm$";}];
|
|
|
|
default-column-width.proportion = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
matches = [
|
|
|
|
{
|
|
|
|
app-id = "^floorp$";
|
|
|
|
title = "^Picture-in-Picture$";
|
|
|
|
}
|
|
|
|
{title = "^Picture in picture$";}
|
|
|
|
];
|
|
|
|
open-floating = true;
|
|
|
|
}
|
|
|
|
]
|
|
|
|
++ (lib.optionals (cfg.monitors != null) [
|
|
|
|
{
|
|
|
|
matches = [
|
|
|
|
{
|
|
|
|
app-id = "^floorp$";
|
|
|
|
at-startup = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
open-on-output = builtins.elemAt cfg.monitors 1;
|
2025-03-02 02:11:04 +00:00
|
|
|
open-on-workspace = "web";
|
|
|
|
default-column-width.proportion = 1.0;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
matches = [
|
|
|
|
{
|
|
|
|
app-id = "^thunderbird$";
|
|
|
|
at-startup = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
open-on-output = builtins.elemAt cfg.monitors 1;
|
|
|
|
open-on-workspace = "email";
|
2025-03-01 18:20:25 +00:00
|
|
|
default-column-width.proportion = 1.0;
|
|
|
|
}
|
|
|
|
]);
|
2025-03-01 01:28:07 +00:00
|
|
|
|
2025-03-02 18:41:56 +00:00
|
|
|
### Keybinds ###
|
2025-03-01 01:28:07 +00:00
|
|
|
binds = with config.lib.niri.actions; {
|
2025-03-01 22:30:15 +00:00
|
|
|
"Mod+Q".action = close-window;
|
|
|
|
"Mod+Shift+E".action = quit;
|
|
|
|
"Ctrl+Alt+Delete".action = quit;
|
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+Shift+Slash".action = show-hotkey-overlay;
|
|
|
|
"Mod+Return".action = spawn (lib.getExe config.marleyos.apps.terminal);
|
|
|
|
"Mod+R".action = spawn (lib.getExe config.programs.fuzzel.package);
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 04:55:07 +00:00
|
|
|
"Mod+H".action = focus-column-or-monitor-left;
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+J".action = focus-window-down;
|
|
|
|
"Mod+K".action = focus-window-up;
|
2025-03-01 04:55:07 +00:00
|
|
|
"Mod+L".action = focus-column-or-monitor-right;
|
2025-03-01 22:30:15 +00:00
|
|
|
"Mod+Home".action = focus-column-first;
|
|
|
|
"Mod+End".action = focus-column-last;
|
|
|
|
|
2025-03-01 04:55:07 +00:00
|
|
|
"Mod+Shift+H".action = move-column-left-or-to-monitor-left;
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+Shift+J".action = move-window-down;
|
|
|
|
"Mod+Shift+K".action = move-window-up;
|
2025-03-01 04:55:07 +00:00
|
|
|
"Mod+Shift+L".action = move-column-right-or-to-monitor-right;
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+Shift+Home".action = move-column-to-first;
|
|
|
|
"Mod+Shift+End".action = move-column-to-last;
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+Page_Down".action = focus-workspace-down;
|
|
|
|
"Mod+Page_Up".action = focus-workspace-up;
|
|
|
|
"Mod+Ctrl+Page_Down".action = move-workspace-up;
|
|
|
|
"Mod+Ctrl+Page_Up".action = move-workspace-down;
|
2025-03-01 22:30:15 +00:00
|
|
|
"Mod+Shift+Page_Down".action = move-column-to-workspace-down;
|
|
|
|
"Mod+Shift+Page_Up".action = move-column-to-workspace-up;
|
|
|
|
|
|
|
|
"Mod+Ctrl+H".action = focus-monitor-left;
|
|
|
|
"Mod+Ctrl+L".action = focus-monitor-right;
|
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+BracketLeft".action = consume-or-expel-window-left;
|
|
|
|
"Mod+BracketRight".action = consume-or-expel-window-right;
|
|
|
|
"Mod+Comma".action = consume-window-into-column;
|
|
|
|
"Mod+Period".action = expel-window-from-column;
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+P".action = switch-preset-column-width;
|
|
|
|
"Mod+Shift+P".action = switch-preset-window-height;
|
|
|
|
"Mod+Ctrl+P".action = reset-window-height;
|
|
|
|
"Mod+F".action = maximize-column;
|
|
|
|
"Mod+Shift+F".action = fullscreen-window;
|
|
|
|
"Mod+Ctrl+F".action = expand-column-to-available-width;
|
|
|
|
"Mod+C".action = center-column;
|
|
|
|
"Mod+Minus".action = set-column-width "-10%";
|
|
|
|
"Mod+Equal".action = set-column-width "+10%";
|
|
|
|
"Mod+Shift+Minus".action = set-window-height "-10%";
|
|
|
|
"Mod+Shift+Equal".action = set-window-height "+10%";
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 04:25:12 +00:00
|
|
|
"Mod+G".action = toggle-window-floating;
|
|
|
|
"Mod+Shift+G".action = switch-focus-between-floating-and-tiling;
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+T".action = toggle-column-tabbed-display;
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Print".action = screenshot;
|
|
|
|
"Ctrl+Print".action = screenshot-screen;
|
|
|
|
"Alt+Print".action = screenshot-window;
|
2025-03-01 22:30:15 +00:00
|
|
|
|
2025-03-01 01:28:07 +00:00
|
|
|
"Mod+Escape".action = toggle-keyboard-shortcuts-inhibit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|