forked from Fediversity/Fediversity
68 lines
1.7 KiB
Nix
68 lines
1.7 KiB
Nix
{ config, options, lib, pkgs, ... }:
|
|
let
|
|
inherit (lib)
|
|
mkOption
|
|
types
|
|
;
|
|
cfg = config;
|
|
in
|
|
{
|
|
imports = [ ./content-types.nix ];
|
|
|
|
# TODO: enable i18n, e.g. via a nested attribute for language-specific content
|
|
options.pages = mkOption {
|
|
description = ''
|
|
Collection of pages on the site
|
|
'';
|
|
type = with types; attrsOf (submodule config.content-types.page);
|
|
};
|
|
|
|
options.collections = mkOption
|
|
{
|
|
description = ''
|
|
Named collections of unnamed pages
|
|
|
|
Define the content type of a new collection `example` to be `article`:
|
|
|
|
```nix
|
|
config.collections.example.type = config.types.article;
|
|
```
|
|
|
|
Add a new entry to the `example` collection:
|
|
|
|
```nix
|
|
config.collections.example.entry = {
|
|
# contents here
|
|
}
|
|
```
|
|
'';
|
|
type = with types; attrsOf (submodule ({ name, config, ... }: {
|
|
options = {
|
|
type = mkOption {
|
|
description = "Type of entries in the collection";
|
|
type = types.deferredModule;
|
|
};
|
|
name = mkOption {
|
|
description = "Symbolic name, used as a human-readable identifier";
|
|
type = types.str;
|
|
default = name;
|
|
};
|
|
entry = mkOption {
|
|
description = "An entry in the collection";
|
|
type = types.collection (types.submodule ({
|
|
_module.args.collection = config;
|
|
imports = [ config.type ];
|
|
}));
|
|
};
|
|
};
|
|
}));
|
|
};
|
|
|
|
options.menus = mkOption {
|
|
description = ''
|
|
Collection navigation menus
|
|
'';
|
|
type = with types; attrsOf (submodule config.content-types.navigation);
|
|
};
|
|
}
|