blob: aecbf63be10afdb5f2722bee6a34c6dd16a46f0e (
plain) (
tree)
|
|
{ config, pkgs, lib, ... }:
{
services.xserver.windowManager = {
i3.enable = true;
};
programs.rofi = {
enable = true;
theme = "purple";
extraConfig = {
modi = "drun";
show-icons = true;
icon-theme = "Numix-Square";
combi-modi = "window,drun,ssh";
};
};
}
|