mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
15 lines
279 B
Nix
15 lines
279 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.specialArgs = lib.mkOption {
|
|
type = with lib.types; attrsOf anything;
|
|
default = { };
|
|
example = lib.literalExpression ''
|
|
{
|
|
location = "Your mom's home";
|
|
utilsLib = import ./lib/utils.nix;
|
|
}
|
|
'';
|
|
};
|
|
}
|