From 482b4af6abc74d6844339d2a2e62fa299a415c9d Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Thu, 5 Feb 2026 16:16:27 +0100 Subject: added base of picom --- modules/nixos/des/i3wm.nix | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to 'modules/nixos') 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 -- cgit v1.2.3