Add 'old-conf/' from commit '62a64a79a8'
git-subtree-dir: old-conf git-subtree-mainline:4667974392git-subtree-split:62a64a79a8
This commit is contained in:
commit
83de52d5db
195 changed files with 13408 additions and 0 deletions
34
old-conf/hosts/ds9/grist.nix
Normal file
34
old-conf/hosts/ds9/grist.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
ragon.agenix.secrets.ds9GristEnv = { };
|
||||
virtualisation.quadlet = {
|
||||
containers.grist = {
|
||||
containerConfig = {
|
||||
image = "docker.io/gristlabs/grist-oss";
|
||||
networks = [
|
||||
"podman"
|
||||
"db-net"
|
||||
];
|
||||
volumes = [
|
||||
"grist:/persist"
|
||||
];
|
||||
environments = {
|
||||
GRIST_SANDBOX_FLAVOR = "gvisor";
|
||||
APP_HOME_URL = "https://grist.hailsatan.eu";
|
||||
GRIST_FORCE_LOGIN = "true";
|
||||
GRIST_TELEMETRY_LEVEL = "off";
|
||||
GRIST_ALLOW_AUTOMATIC_VERSION_CHECKING = "false";
|
||||
};
|
||||
addCapabilities = [ "SYS_PTRACE" ];
|
||||
environmentFiles = [
|
||||
config.age.secrets.ds9GristEnv.path
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue