summary refs log tree commit diff stats
path: root/system/settings/programs/i3.nix
blob: 4cf4a82af545391bff4d2a2ed2460f4eb7c331fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  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
  ];
}