modules/home: Remove standalone hm compatibility layer

This commit is contained in:
SebastianStork 2026-02-06 15:09:08 +01:00
parent e0c8bb401b
commit d54e079db8
Signed by: SebastianStork
SSH key fingerprint: SHA256:iEM011ogNMG1q8+U500adGu/9rpPuZ2KnFtbdLeqTiI
5 changed files with 22 additions and 22 deletions

View file

@ -1,7 +1,12 @@
{ config, lib, ... }@moduleArgs:
{
config,
osConfig,
lib,
...
}:
{
options.custom.services.syncthing.enable = lib.mkEnableOption "" // {
default = moduleArgs.osConfig.custom.services.syncthing.enable or false;
default = osConfig.custom.services.syncthing.enable;
};
config = lib.mkIf config.custom.services.syncthing.enable {