summary refs log tree commit diff stats
path: root/system/settings/programs/i3.nix
blob: 7d1726591f3547e41ee38e1e2e130a92ffbfb27c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config
, pkgs
, ...
}: {
  services.xserver.windowManager = {
    i3 = {
      enable = true;
      extraSessionCommands = ''
        ${pkgs.sxhkd}/bin/sxhkd &
      '';
    };
  };
  services.xserver.displayManager.defaultSession = "none+i3";

  environment.systemPackages = with pkgs; [
    i3status
  ];

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