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

{ services.xserver.windowManager.i3 = {
    enable = true;
    package = pkgs.i3-gaps;
  };

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

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