dotfiles/nix/modules/nixos/rofi.nix

26 lines
403 B
Nix
Raw Normal View History

2024-11-25 08:03:59 +00:00
{ pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [
rofi
rofi-power-menu
];
home-manager.users.${username}.programs.rofi = {
enable = true;
cycle = true;
2024-12-22 20:52:49 +00:00
theme = "Arc-Dark";
2024-11-25 08:03:59 +00:00
extraConfig = {
modi = "run,drun,emoji,calc";
};
plugins = with pkgs; [
rofi-bluetooth
rofi-calc
rofi-emoji
rofi-pulse-select
];
};
}