nixos-configs/modules/meta/default.nix
matt1432 5194199d25
All checks were successful
Discord / discord commits (push) Has been skipped
docs: add generated configurations readme
2025-01-20 19:04:05 -05:00

15 lines
252 B
Nix

{lib, ...}: let
inherit (lib) mkOption types;
in {
options.meta = {
roleDescription = mkOption {
type = types.str;
default = "";
};
hardwareDescription = mkOption {
type = types.str;
default = "";
};
};
}