diff options
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/i3.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/fcuny/i3.nix b/users/fcuny/i3.nix index 7f5f793..833b561 100644 --- a/users/fcuny/i3.nix +++ b/users/fcuny/i3.nix @@ -5,6 +5,12 @@ xsession.windowManager.i3 = { enable = true; + config = { + terminal = "${pkgs.alacritty}/bin/alacritty"; + keybindings = lib.mkOptionDefault { + "${mod}+r" = "exec --no-startup-id ${pkgs.rofi}/bin/rofi"; + }; + } }; programs.rofi = { |