nixos-config/modules/variables/domains/default.nix

16 lines
280 B
Nix
Raw Normal View History

2025-02-25 01:37:56 -05:00
{ config, lib, ... }:
{
options.domains = lib.mkOption {
type = lib.types.attrs;
default = {};
};
config.domains = {
p1 = "jimbosfiles.com";
p2 = "nixfox.ca";
2025-02-24 22:52:40 -05:00
blox = "bloxelcom.net";
corn = "freecorn1854.win";
luna = "lunamoonlight.xyz";
};
}