setup basics of rofi

This commit is contained in:
Infinidoge 2021-10-26 15:28:56 -04:00
parent cac1d3fbed
commit 3f199f8f4d
3 changed files with 21 additions and 1 deletions

View file

@ -14,6 +14,8 @@
gaming
themeing
rofi
])
];

19
users/profiles/rofi.nix Normal file
View file

@ -0,0 +1,19 @@
{ 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";
};
}