mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat[client]: add autotiling
This commit is contained in:
parent
0287e9d582
commit
4e985811fc
7 changed files with 1265 additions and 822 deletions
14
modules/home/common/autotiling.nix
Normal file
14
modules/home/common/autotiling.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue