aboutsummaryrefslogblamecommitdiff
path: root/users/fcuny/i3.nix
blob: 74fefb2accf02a2fe70c0d4937dc7e5911e99698 (plain) (tree)
1
2
3
4
5
6
7
8


                           
                         
 


                               











                                     
 
{ 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";
    };
  };
}