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

21 lines
267 B
Nix

{ pkgs, lib, config, options, ... }:
{
imports = [
./acme.nix
./dyndns.nix
./haveged.nix
./media.nix
./openssh.nix
./timesyncd.nix
./unifi.nix
./webserver.nix
];
options = {
personal = {
services = { };
};
};
}