aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/des/i3wm.nix
blob: f26b54ad2665cd79761b44a3e6cb45467d65d026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }:

{
  services.xserver = {
    enable = true;
    windowManager.i3.enable = true;

    # Czech QWERTZ layout (Czech "CZ" layout)
    xkb = {
      layout = "cz";
      options = "eurosign:e,caps:escape";
    };
  };
}