dotfiles/modules/meta.nix
2026-02-06 14:49:06 +02:00

9 lines
211 B
Nix

{lib, ...}: let
inherit (lib) types;
in {
options.flake.meta = lib.mkOption {
type = types.attrsOf types.anything;
default = {};
description = "the flake's meta values, can be anything!";
};
}