{ config, lib, pkgs, ... }: { imports = [ ]; options.castrum = { packages = lib.mkOption { type = lib.types.listOf lib.types.path; default = [ ]; example = with pkgs; [ nano bash ]; description = '' List of packages to install. ''; }; }; }