forked from Zynh0722/permafrost
forgejo: fix option definition
This commit is contained in:
parent
41ad6fe8ea
commit
d4a8f67e9a
1 changed files with 3 additions and 3 deletions
|
@ -1,12 +1,12 @@
|
|||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
cfg = config.permafrost.nyazoom;
|
||||
cfg = config.permafrost.forgejo;
|
||||
ACMEEnabled = config.nginx.enableACME;
|
||||
in
|
||||
{
|
||||
options.permafrost.nyazoom = {
|
||||
enable = lib.mkEnableOption "permafrost nixos module";
|
||||
options.permafrost.forgejo = {
|
||||
enable = lib.mkEnableOption "forgejo nixos module";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
|
Loading…
Reference in a new issue