26 lines
326 B
Nix
26 lines
326 B
Nix
|
|
{
|
||
|
|
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.
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|