From 310d7d7fbd7283273b47fcdb3e80d11458879c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Sat, 11 Oct 2025 21:59:43 +0200 Subject: [PATCH] chore[client] add autotiling block --- SwarselSystems.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/SwarselSystems.org b/SwarselSystems.org index fdbc8f9..46bfe65 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -14729,6 +14729,25 @@ This service changes the screen hue at night. I am not sure if that really does } #+end_src +**** autotiling + +#+begin_src nix-ts :tangle modules/home/common/autotiling.nix + { lib, config, ... }: + let + moduleName = "autotiling"; + in + { + options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings"; + config = lib.mkIf config.swarselmodules.${moduleName} { + swarselservices.${moduleName} = { + enable = true; + systemdTarget = config.wayland.systemd.target; + }; + }; + + } +#+end_src + **** swaylock