Files
nixos/Droidnix/generated/system/mysystem.nix
T
2026-03-19 13:32:15 +00:00

10 lines
217 B
Nix

{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.any; # works in all versions
default = {};
description = "Root container for all my custom system options";
};
}