2024-10-24 23:42:09 -04:00
|
|
|
{ lib, config, ... }:
|
|
|
|
{
|
|
|
|
options.domains = lib.mkOption {
|
|
|
|
type = lib.types.attrs;
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
|
|
|
|
config.domains = {
|
2025-01-01 02:02:00 -05:00
|
|
|
p1 = "jimbosfiles.com";
|
|
|
|
p2 = "nixfox.ca";
|
2024-10-24 23:42:09 -04:00
|
|
|
corn = "freecorn1854.win";
|
|
|
|
luna = "lunamoonlight.xyz";
|
|
|
|
};
|
|
|
|
}
|