nixos/modules/locations.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

2023-04-29 19:20:42 +01:00
{ config, lib, ... }:
let
cfg = config.custom.locations;
in
{
options.custom.locations = {
autoServe = lib.mkOption {
default = false;
type = lib.types.bool;
};
locations = lib.mkOption {
default = {
services = {
downloads = "tywin.storage.ts.hillion.co.uk";
2023-12-30 22:34:27 +00:00
gitea = "jorah.cx.ts.hillion.co.uk";
2023-12-24 22:09:53 +00:00
homeassistant = "microserver.home.ts.hillion.co.uk";
2023-01-17 22:36:39 +00:00
mastodon = "vm.strangervm.ts.hillion.co.uk";
2023-11-26 19:44:30 +00:00
matrix = "jorah.cx.ts.hillion.co.uk";
2023-12-08 21:59:29 +00:00
unifi = "jorah.cx.ts.hillion.co.uk";
2023-04-29 19:20:42 +01:00
};
};
};
};
config = lib.mkIf cfg.autoServe {
custom.services.downloads.enable = cfg.locations.services.downloads == config.networking.fqdn;
2023-12-30 22:34:27 +00:00
custom.services.gitea.enable = cfg.locations.services.gitea == config.networking.fqdn;
2023-12-24 22:09:53 +00:00
custom.services.homeassistant.enable = cfg.locations.services.homeassistant == config.networking.fqdn;
2023-01-17 22:36:39 +00:00
custom.services.mastodon.enable = cfg.locations.services.mastodon == config.networking.fqdn;
custom.services.matrix.enable = cfg.locations.services.matrix == config.networking.fqdn;
2023-12-08 21:59:29 +00:00
custom.services.unifi.enable = cfg.locations.services.unifi == config.networking.fqdn;
2023-04-29 19:20:42 +01:00
};
}