chore[client] add autotiling block

This commit is contained in:
Leon Schwarzäugl 2025-10-11 21:59:43 +02:00
parent 4bc06d0f07
commit 310d7d7fbd
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84

View file

@ -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