all repos — nixfiles @ b48da7c8cafca69b44b2d39f36761647f393e069

System and user configuration, managed by nix and home-manager

modules/i3.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

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

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