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, ... }:
{
environment = {
systemPackages = with pkgs; [
rofi
programs.rofi = {
enable = true;
theme = "sidebar";
font = "sans-serif";
package = pkgs.rofi;
modes = [
"drun"
"run"
"window"
"ssh"
];
extraConfig = {
show-icons = true;
};
};
}