blob: aa97cb8c43d40aa7317d5bd54a03f6fc673e1278 (
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;
combi-modi = "window,drun,ssh";
};
};
}
|