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

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

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

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