mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
cleanup
This commit is contained in:
parent
fc57e4cc92
commit
775b85031e
2 changed files with 12 additions and 8 deletions
|
|
@ -3,7 +3,7 @@ let
|
|||
jobOptions = { ... }: {
|
||||
options = {
|
||||
app = mkOption {
|
||||
type = types.string;
|
||||
type = types.str;
|
||||
description = "The app name, used as the directory in the bucket";
|
||||
};
|
||||
environmentFile = mkOption {
|
||||
|
|
@ -11,20 +11,20 @@ let
|
|||
default = null;
|
||||
};
|
||||
file = mkOption {
|
||||
type = types.nullOr types.string;
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
};
|
||||
pgDump = mkOption {
|
||||
type = types.nullOr (types.submodule ({ ... }: {
|
||||
options = {
|
||||
containerName = mkOption {
|
||||
type = types.string;
|
||||
type = types.str;
|
||||
};
|
||||
dbName = mkOption {
|
||||
type = types.string;
|
||||
type = types.str;
|
||||
};
|
||||
userName = mkOption {
|
||||
type = types.string;
|
||||
type = types.str;
|
||||
};
|
||||
};
|
||||
}));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue