summary refs log tree commit diff stats
path: root/system/settings/programs/i3.nix
blob: ab1fcca4a344fa123f9fe8f688d4fb8a775c7dbf (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;
      extraSessionCommands = ''
        ${pkgs.sxhkd}/bin/sxhkd &
      '';
    };
  };
  services.xserver.displayManager.defaultSession = "none+i3";

  environment.systemPackages = with pkgs; [
    i3status
  ];

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