Configure rofi and add plugins
This commit is contained in:
parent
8a6be4f1de
commit
42ba264047
3 changed files with 26 additions and 1 deletions
24
nix/modules/nixos/desktop/rofi.nix
Normal file
24
nix/modules/nixos/desktop/rofi.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ pkgs, username, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
rofi
|
||||
rofi-power-menu
|
||||
];
|
||||
|
||||
home-manager.users.${username}.programs.rofi = {
|
||||
enable = true;
|
||||
cycle = true;
|
||||
|
||||
extraConfig = {
|
||||
modi = "run,drun,emoji,calc";
|
||||
};
|
||||
|
||||
plugins = with pkgs; [
|
||||
rofi-bluetooth
|
||||
rofi-calc
|
||||
rofi-emoji
|
||||
rofi-pulse-select
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue