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

10 lines
219 B
Nix

{ lib, ... }:
{
options.mySystem = lib.mkOption {
type = lib.types.attrsOf lib.types.value; # allows nested options
default = {};
description = "Root container for all my custom system options";
};
}