first commit
This commit is contained in:
commit
17f65ed65f
9 changed files with 394 additions and 0 deletions
15
affine/options.nix
Normal file
15
affine/options.nix
Normal 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"; };
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue