meow
This commit is contained in:
parent
e085b8d286
commit
d9aecb96c7
4 changed files with 41 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ in
|
||||||
|
|
||||||
./containers.nix
|
./containers.nix
|
||||||
./backup.nix
|
./backup.nix
|
||||||
|
./grist.nix
|
||||||
# ./plex.nix
|
# ./plex.nix
|
||||||
./samba.nix
|
./samba.nix
|
||||||
./paperless.nix
|
./paperless.nix
|
||||||
|
|
@ -287,6 +288,11 @@ in
|
||||||
import podmanRedirWithAuth http://archivebox:8000
|
import podmanRedirWithAuth http://archivebox:8000
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@grist host grist.hailsatan.eu
|
||||||
|
handle @grist {
|
||||||
|
import podmanRedir http://grist:8484
|
||||||
|
|
||||||
|
}
|
||||||
@snipe-it host snipe-it.hailsatan.eu
|
@snipe-it host snipe-it.hailsatan.eu
|
||||||
handle @snipe-it {
|
handle @snipe-it {
|
||||||
root * ${pkgs.snipe-it}/share/php/snipe-it/public
|
root * ${pkgs.snipe-it}/share/php/snipe-it/public
|
||||||
|
|
|
||||||
34
hosts/ds9/grist.nix
Normal file
34
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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
BIN
secrets/ds9GristEnv.age
Normal file
BIN
secrets/ds9GristEnv.age
Normal file
Binary file not shown.
|
|
@ -19,6 +19,7 @@ in
|
||||||
"ds9SyncoidHealthCheckUrl.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9SyncoidHealthCheckUrl.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
"ds9DynDns.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9DynDns.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
"ds9SnipeIt.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9SnipeIt.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
|
"ds9GristEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
"ds9PostgresEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9PostgresEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
"ds9ImmichEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9ImmichEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
"ds9AuthentikEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
"ds9AuthentikEnv.age".publicKeys = pubkeys.ragon.host "ds9";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue