aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/des
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-05 16:16:27 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-05 16:16:27 +0100
commit482b4af6abc74d6844339d2a2e62fa299a415c9d (patch)
tree6fb9a52a796040b687cadde3450e3cddadf24da0 /modules/nixos/des
parent10ff40f96782562319ac3c71cac7584cc1cfbecc (diff)
added base of picom
Diffstat (limited to 'modules/nixos/des')
-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