feat: rofi config
This commit is contained in:
parent
41c56dca0d
commit
fb139f171e
2 changed files with 24 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
../../modules/home-manager/blueman.nix
|
||||
../../modules/home-manager/git.nix
|
||||
../../modules/home-manager/wofi.nix
|
||||
../../modules/home-manager/rofi.nix
|
||||
../../modules/home-manager/waybar.nix
|
||||
../../modules/home-manager/alacritty.nix
|
||||
../../modules/home-manager/nextcloud.nix
|
||||
|
|
|
|||
23
modules/home-manager/rofi.nix
Normal file
23
modules/home-manager/rofi.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{pkgs, ...}: {
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
package = pkgs.rofi-wayland;
|
||||
theme = "gruvbox-dark";
|
||||
font = "JetBrainsMono Nerd Font Mono";
|
||||
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||
pass = {
|
||||
enable = true;
|
||||
package = pkgs.rofi-pass-wayland;
|
||||
extraConfig = ''
|
||||
URL_field='url'
|
||||
USERNAME_field='user'
|
||||
'';
|
||||
};
|
||||
plugins = [
|
||||
pkgs.rofi-emoji-wayland
|
||||
];
|
||||
extraConfig = {
|
||||
modi = "drun,emoji";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue