Files
nixos/Droidnix/generated/system/mysystem.nix
T
2026-03-19 12:06:41 +00:00

9 lines
195 B
Nix

{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = {};
description = "Root for custom mySystem options (hierarchical)";
};
}