mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-22 18:21:58 +01:00
34 lines
481 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|