15 lines
256 B
Nix
15 lines
256 B
Nix
|
{ lib, config, ... }:
|
||
|
{
|
||
|
options.domains = lib.mkOption {
|
||
|
type = lib.types.attrs;
|
||
|
default = {};
|
||
|
};
|
||
|
|
||
|
config.domains = {
|
||
|
jim1 = "jimbosfiles.com";
|
||
|
jim2 = "nixfox.ca";
|
||
|
corn = "freecorn1854.win";
|
||
|
luna = "lunamoonlight.xyz";
|
||
|
};
|
||
|
}
|