home: Enable rofi program launcher

This commit is contained in:
Alexander Kobjolke 2024-02-11 15:59:34 +01:00
parent 5e6aaabb6d
commit 33de3c1f70
2 changed files with 17 additions and 0 deletions

View file

@ -4,6 +4,7 @@
imports = [
./cli.nix
# ./programs/xmonad/default.nix
./programs/rofi/default.nix
];
home = {

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
programs.rofi = {
enable = true;
plugins = with pkgs; [ rofi-calc rofi-emoji ];
terminal = "${pkgs.alacritty}/bin/alacritty";
pass = {
enable = true;
stores = [ config.programs.password-store.settings.PASSWORD_STORE_DIR ];
};
};
# let rofi insert emojis directly
home.packages = [ pkgs.xdotool ];
}