Use nixosModules and homeManagerModules for config

This commit is contained in:
Oliver Davies 2025-03-05 15:09:06 +00:00
parent 88a054f3b4
commit 2de0e1a2d6
46 changed files with 151 additions and 190 deletions

View file

@ -3,10 +3,10 @@
with lib;
let
cfg = config.features.cli.syncthing;
cfg = config.homeManagerModules.syncthing;
in
{
options.features.cli.syncthing.enable = mkEnableOption "Enable syncthing";
options.homeManagerModules.syncthing.enable = mkEnableOption "Enable syncthing";
config = mkIf cfg.enable {
services.syncthing.enable = true;