summaryrefslogtreecommitdiff
path: root/modules/nixos/des/i3wm.nix
blob: 2d3d67f2ca0a4a5f04761c3ea907b463266cbaf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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";
      };
    };
  
    picom = {
      enable = true;
    };
  };
}