services: add services folder

This commit is contained in:
2025-08-31 08:51:41 -07:00
parent 2f26353016
commit 5fd8885c19
2 changed files with 18 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
./hosts/${hostname}/hardware-configuration.nix
./base/base.nix
./roles/roles.nix
./services/services.nix
./hosts/${hostname}/default.nix
];
}

17
services/services.nix Normal file
View File

@@ -0,0 +1,17 @@
# services/services.nix
# Entrypoint for all services files
{
lib,
pkgs,
pkgsUnstable,
inputs,
options,
...
}:
{
imports = [
./radicale.nix
];
radicale.enable = lib.mkDefault false;
}