Replace rofi with dmenu

This commit is contained in:
Oliver Davies 2025-02-13 23:10:00 +00:00
parent 5d854d25d2
commit 84d5a02a42
3 changed files with 4 additions and 35 deletions
nix/modules/nixos

View file

@ -5,7 +5,6 @@
./features/gaming.nix
./features/homelab
./fonts.nix
./rofi.nix
./rsnapshot.nix
./xbanish.nix
];

View file

@ -1,25 +0,0 @@
{ pkgs, username, ... }:
{
environment.systemPackages = with pkgs; [
rofi
rofi-power-menu
];
home-manager.users.${username}.programs.rofi = {
enable = true;
cycle = true;
theme = "Arc-Dark";
extraConfig = {
modi = "run,drun,emoji,calc";
};
plugins = with pkgs; [
rofi-bluetooth
rofi-calc
rofi-emoji
rofi-pulse-select
];
};
}