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