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