aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/des/i3wm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/des/i3wm.nix')
-rw-r--r--modules/nixos/des/i3wm.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/modules/nixos/des/i3wm.nix b/modules/nixos/des/i3wm.nix
index f26b54a..0138355 100644
--- a/modules/nixos/des/i3wm.nix
+++ b/modules/nixos/des/i3wm.nix
@@ -1,14 +1,20 @@
{ config, lib, pkgs, ... }:
{
- services.xserver = {
- enable = true;
- windowManager.i3.enable = true;
+ services = {
+ xserver = {
+ enable = true;
+ windowManager.i3.enable = true;
- # Czech QWERTZ layout (Czech "CZ" layout)
- xkb = {
- layout = "cz";
- options = "eurosign:e,caps:escape";
+ # Czech QWERTZ layout (Czech "CZ" layout)
+ xkb = {
+ layout = "cz";
+ options = "eurosign:e,caps:escape";
+ };
};
+
+ picom = {
+ enable = true
+ }
};
} \ No newline at end of file