added rofi plugins/scripts

dev-docs
Moritz Böhme 2021-09-29 13:34:38 +02:00
parent 9ac6d7c0a8
commit 27279976b2
1 changed files with 10 additions and 4 deletions

View File

@ -4,11 +4,17 @@ let
base = (home: { base = (home: {
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi.override { plugins = with pkgs; [ rofi-calc ]; };
# theme = ~/.dotfiles/config/rofi/dracula_old.rasi; # theme = ~/.dotfiles/config/rofi/dracula_old.rasi;
theme = ./dracula.rasi; theme = ./dracula.rasi;
}; };
home.packages = with pkgs; [ networkmanager_dmenu ];
xdg = {
enable = true;
configFile."networkmanager-dmenu/config.ini".text = ''
[dmenu]
dmenu_command = rofi
'';
};
}); });
in in { home-manager.users.moritz = { ... }: (base "/home/moritz/"); }
{
home-manager.users.moritz = { ... }: (base "/home/moritz/");
}