mirror of
https://github.com/tboerger/nixos-config
synced 2024-11-23 03:32:08 +01:00
21 lines
267 B
Nix
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 = { };
|
|
};
|
|
};
|
|
}
|