mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
chore[client] add autotiling block
This commit is contained in:
parent
4bc06d0f07
commit
310d7d7fbd
1 changed files with 19 additions and 0 deletions
|
|
@ -14729,6 +14729,25 @@ This service changes the screen hue at night. I am not sure if that really does
|
||||||
}
|
}
|
||||||
#+end_src
|
#+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
|
**** swaylock
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue