system/docker: modularize

This commit is contained in:
Felix Buehler 2022-12-05 22:51:46 +01:00
parent 082478e688
commit 19520eae7f
5 changed files with 40 additions and 15 deletions

View file

@ -6,10 +6,9 @@
./dyndns.nix
./services.nix
./syncthing.nix
./system.nix
./wifi.nix
../../legacy/modules/avahi.nix
../../legacy/modules/docker.nix
../../legacy/modules/nix.nix
../../legacy/modules/webapps/bazarr.nix
../../legacy/modules/webapps/prowlarr.nix
../../legacy/modules/webapps/radarr.nix

View file

@ -0,0 +1,10 @@
# enabled system services
{ config, lib, ... }:
let
secrets = config.sops.secrets;
in
{
my.system = {
docker.enable = true;
};
}