summary refs log tree commit diff stats
path: root/modules/programs/i3.nix
blob: 76dc66dccc534cb807993e6229ff23ff346ef7fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, pkgs, ... }:

{ services.xserver.windowManager.i3 = {
    enable = true;
    package = pkgs.i3-gaps;
    extraSessionCommands = ''
      ${pkgs.dunst}/bin/dunst &
      ${pkgs.sxhkd}/bin/sxhkd &
    '';
  };

  environment.systemPackages = with pkgs; [
    i3status
    i3lock-color
  ];

  imports = [
    ./window-manager.nix
  ];
}