universe/users/profiles/rofi.nix
2023-03-30 12:29:47 -04:00

19 lines
336 B
Nix

{ pkgs, ... }: {
programs.rofi = {
enable = true;
extraConfig = {
modi = builtins.concatStringsSep "," [
"window"
"run"
"ssh"
"windowcd"
"drun"
"combi"
"keys"
];
};
plugins = with pkgs; [ ];
pass.enable = true;
theme = "Adapta-Nokto";
};
}