added rofi plugins/scripts
parent
9ac6d7c0a8
commit
27279976b2
|
@ -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/");
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue