nixos/modules/home/niri.nix
2024-08-22 18:37:45 -04:00

12 lines
242 B
Nix

{...}: {
programs.niri.config = ''
window-rule {
match app-id=r#"^org\.wezfurlong\.wezterm$"#
default-column-width {}
}
binds {
Super+T { spawn "wezterm"; }
}
'';
}