nixos/home/hyprland/rofi/default.nix

24 lines
427 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
{
2023-09-28 08:27:03 +01:00
stylix.targets.rofi.enable = true;
2023-04-03 16:53:23 +01:00
programs.rofi = {
enable = true;
2023-07-18 09:26:10 +01:00
location = "center";
pass = {
enable = true;
extraConfig = ''
USERNAME_field='login'
'';
};
2023-04-07 09:42:12 +01:00
extraConfig = {
2023-07-18 10:11:38 +01:00
sort = true;
sorting-method = "fzf";
matching = "fuzzy";
show-icons = false;
2023-04-07 09:42:12 +01:00
disable-history = false;
hide-scrollbar = true;
};
2023-04-03 16:53:23 +01:00
};
}