Initial NixOS infra flake skeleton
This commit is contained in:
commit
9383d615d7
9 changed files with 267 additions and 0 deletions
16
modules/flowback-options.nix
Normal file
16
modules/flowback-options.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ lib, ... }:
|
||||
let
|
||||
inherit (lib) mkOption types;
|
||||
in
|
||||
{
|
||||
options.services.flowback = {
|
||||
nextcloudHost = mkOption {
|
||||
type = types.str;
|
||||
description = "Hostname for Nextcloud";
|
||||
};
|
||||
forgejoHost = mkOption {
|
||||
type = types.str;
|
||||
description = "Hostname for Forgejo";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue