nixos/modules/locations.nix

35 lines
951 B
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-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-04-29 19:20:42 +01:00
};
2023-12-08 21:18:21 +00:00
drone = {
server = "vm.strangervm.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-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:18:21 +00:00
custom.drone.server.enable = cfg.locations.drone.server == config.networking.fqdn;
2023-04-29 19:20:42 +01:00
};
}