first commit

This commit is contained in:
emptyynes 2025-09-17 16:33:24 +07:00
commit 17f65ed65f
9 changed files with 394 additions and 0 deletions

15
affine/options.nix Normal file
View file

@ -0,0 +1,15 @@
{ lib, ... }:
{
options = with lib; with types; {
affine = {
env = {
PORT = mkOption { type = int; default = 3010; };
DB_USERNAME = mkOption { type = str; default = "affine"; };
DB_PASSWORD = mkOption { type = str; default = "affine"; };
DB_DATABASE = mkOption { type = str; default = "affine"; };
};
revision = mkOption { type = str; default = "stable"; };
};
};
}