Removed domains nix file

This commit is contained in:
Giulio De Pasquale 2022-12-01 14:28:32 +01:00
parent 932378b309
commit 68c1ee4869

View File

@ -1,11 +0,0 @@
{ lib }:
let
domains = [ "runas.rocks" "giugl.io" ];
in
rec {
genSubdomainFQN = { subdomain }:
map (d: "${subdomain}.${d}") domains;
concatSubdomainSep = { subdomain, sep ? "," }:
lib.concatStringSep sep (genSubdomainFQN { inherit subdomain; });
}