1{ lib, helpers, ... }:
2
3with lib; {
4 options.modules.server = {
5 enable = mkOption {
6 default = false;
7 example = true;
8 description = "Whether to enable Server options.";
9 type = types.bool;
10 };
11 };
12
13 imports = [
14 ./sshd.nix
15 ./tailscale.nix
16 ./vaultwarden.nix
17 ./hd-idle.nix
18 ./caddy.nix
19 ./jellyfin.nix
20 ./home-assistant.nix
21 ./podman.nix
22 ./macos.nix
23 ./tangled.nix
24 ];
25}