This commit is contained in:
martyTF 2025-12-17 17:37:52 +01:00
parent 3fea6b47f3
commit 328bd672af

View file

@ -1,9 +1,19 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
environment = { programs.rofi = {
systemPackages = with pkgs; [ enable = true;
rofi theme = "sidebar";
font = "sans-serif";
package = pkgs.rofi;
modes = [
"drun"
"run"
"window"
"ssh"
]; ];
extraConfig = {
show-icons = true;
};
}; };
} }