blob: b09a4390d33223c3d0dc81ddc6edfe94be2f9bc2 (
plain) (
tree)
|
|
{ config, pkgs, lib, ... }:
{
xsession.enable = true;
xsession.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";
};
};
}
|