Initial NixOS infra flake skeleton

This commit is contained in:
Eli Fadi 2026-03-03 11:21:32 +01:00
commit 9383d615d7
9 changed files with 267 additions and 0 deletions

View 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";
};
};
}