mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 20:09:07 +01:00
modules/home: Remove standalone hm compatibility layer
This commit is contained in:
parent
e0c8bb401b
commit
d54e079db8
5 changed files with 22 additions and 22 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue