diff options
Diffstat (limited to 'nixos/tente-configuration.nix')
-rw-r--r-- | nixos/tente-configuration.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/nixos/tente-configuration.nix b/nixos/tente-configuration.nix index 26e8ed9..183e065 100644 --- a/nixos/tente-configuration.nix +++ b/nixos/tente-configuration.nix @@ -4,7 +4,16 @@ # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). let - domains = import ./domains.nix; + domains = + let + domain = "push-f.com"; + in + { + personalWebsite = domain; + tailscaleControlServer = "tailscale.${domain}"; + gitWebsite = "git.${domain}"; + matrixServer = "matrix.${domain}"; + }; acmeEmail = "martin@push-f.com"; in { config, lib, pkgs, ... }: |