about summary refs log tree commit diff
path: root/modules/desktop/i3.nix
blob: aecbf63be10afdb5f2722bee6a34c6dd16a46f0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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";
    };
  };
}