1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../shared/services/default.nix

36 lines
484 B
Nix
Raw Normal View History

{ pkgs, lib, config, options, ... }:
with lib;
{
imports = [
./acme
./authentik
./homedns
./desktop
./docker
./hass
./haveged
./libvirt
./media
./minecraft
./nextcloud
./nixbuild
./openssh
./printing
./shares
./tailscale
./timesyncd
./webserver
];
options = {
personal = {
services = {
enable = mkEnableOption "Services" // {
default = true;
};
};
};
};
}