feat(forgejo): add option for custom forgejo theme
This commit is contained in:
parent
37f8be203f
commit
1d9e8d16d2
2 changed files with 13 additions and 1 deletions
|
|
@ -35,6 +35,16 @@ args@{ config, lib, ... }:
|
|||
'';
|
||||
};
|
||||
|
||||
theme = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.path;
|
||||
default = null;
|
||||
description = ''
|
||||
A directory containing a custom Forgejo theme.
|
||||
|
||||
This directory should contain two subdirectories `css` and `img`.
|
||||
'';
|
||||
};
|
||||
|
||||
templates = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.path;
|
||||
default = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue