1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
github.com-tboerger-nixos-c.../shared/services/default.nix
2024-07-17 16:05:33 +02:00

34 lines
481 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
{
imports = [
./acme.nix
./auth.nix
./desktop.nix
./docker.nix
./hass.nix
./homedns.nix
./libvirt.nix
./minecraft.nix
./printing.nix
./shares.nix
./tailscale.nix
./webserver.nix
./archive
./cloud
./gallery
];
options = {
personal = {
services = {
enable = mkEnableOption "Services" // {
default = true;
};
};
};
};
}