mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
7 lines
239 B
Nix
7 lines
239 B
Nix
lib: {
|
|
isTailscaleDomain = domain: domain |> lib.hasSuffix ".ts.net";
|
|
|
|
subdomainOf = domain: domain |> lib.splitString "." |> lib.head;
|
|
|
|
rootDomainOf = domain: domain |> lib.splitString "." |> lib.tail |> lib.concatStringsSep ".";
|
|
}
|