all repos — nixfiles @ 4773e323ed24f05c1b465623f9ae4ee71e59c0b6

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

modules/programs/i3.nix (view raw)

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
  ];
}