26 lines
326 B
Nix
Raw Normal View History

{
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.
'';
};
};
}