dotfiles/nixos/variables.nix

12 lines
172 B
Nix
Raw Permalink Normal View History

2022-12-19 09:09:08 +00:00
{
config,
lib,
...
}: {
2020-05-19 18:10:36 +01:00
options.variables = lib.mkOption {
type = lib.types.attrs;
2022-12-19 09:09:08 +00:00
default = {};
2020-05-19 18:10:36 +01:00
};
config._module.args.variables = config.variables;
}