nixos-config/modules/extras/variables/domains/default.nix
2025-02-25 01:37:56 -05:00

15 lines
280 B
Nix

{ config, lib, ... }:
{
options.domains = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.domains = {
p1 = "jimbosfiles.com";
p2 = "nixfox.ca";
blox = "bloxelcom.net";
corn = "freecorn1854.win";
luna = "lunamoonlight.xyz";
};
}