home: Enable rofi program launcher
This commit is contained in:
parent
5e6aaabb6d
commit
33de3c1f70
2 changed files with 17 additions and 0 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./cli.nix
|
./cli.nix
|
||||||
# ./programs/xmonad/default.nix
|
# ./programs/xmonad/default.nix
|
||||||
|
./programs/rofi/default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
|
||||||
16
home/alex/programs/rofi/default.nix
Normal file
16
home/alex/programs/rofi/default.nix
Normal 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 ];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue