allow rofi-systemd to use kitty terminal

This commit is contained in:
Noah Masur
2023-03-19 12:49:41 -04:00
parent da89732001
commit c53f1470ee
2 changed files with 20 additions and 4 deletions

View File

@ -144,9 +144,13 @@
};
launcherCommand = "${pkgs.rofi}/bin/rofi -show run -modi run";
launcherCommand = "${
config.home-manager.users.${config.user}.programs.rofi.finalPackage
}/bin/rofi -show run -modi run";
systemdSearch = "${pkgs.rofi-systemd}/bin/rofi-systemd";
altTabCommand = "${pkgs.rofi}/bin/rofi -show window -modi window";
altTabCommand = "${
config.home-manager.users.${config.user}.programs.rofi.finalPackage
}/bin/rofi -show window -modi window";
};