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

11 lines
216 B
Nix

{ lib, ... }:
{
# Root for custom options
options.mySystem = lib.mkOption {
type = lib.types.attrs; # simple attribute set
default = {};
description = "Root for custom mySystem options";
};
}