Fix typos
This commit is contained in:
parent
02a3ccb1a4
commit
03300b37ae
2 changed files with 29 additions and 21 deletions
|
@ -27,9 +27,19 @@ in {
|
|||
owner = "crowdsec";
|
||||
};
|
||||
users.users.tbarnouin.extraGroups = ["docker"];
|
||||
fileSystems."/mnt/docker-data" = {
|
||||
device = "/dev/disk/by-uuid/39fb44a4-5c01-4337-894f-a6a6f4212b10";
|
||||
fsType = "ext4";
|
||||
fileSystems = {
|
||||
"/mnt/docker-data" = {
|
||||
device = "/dev/disk/by-uuid/39fb44a4-5c01-4337-894f-a6a6f4212b10";
|
||||
fsType = "ext4";
|
||||
};
|
||||
"/mnt/media" = {
|
||||
device = "192.168.1.125:/BIGDATA";
|
||||
fsType = "nfs";
|
||||
options = [
|
||||
"x-systemd.automount"
|
||||
"noauto"
|
||||
];
|
||||
};
|
||||
};
|
||||
virtualisation = {
|
||||
docker = {
|
||||
|
@ -47,9 +57,8 @@ in {
|
|||
virtualisation.oci-containers.containers = {
|
||||
"gluetun" = {
|
||||
autoStart = true;
|
||||
autoRemoveOnStop = true;
|
||||
image = "ghcr.io/qdm12/gluetun:latest";
|
||||
environmentFiles = "${config.age.secrets.docker-gluetun-env.path}";
|
||||
environmentFiles = ["${config.age.secrets.docker-gluetun-env.path}"];
|
||||
environment = {
|
||||
"QBT_WEBUI_ENABLED" = "true";
|
||||
"TZ" = "Europe/Paris";
|
||||
|
@ -78,9 +87,8 @@ in {
|
|||
};
|
||||
"qbittorrent" = {
|
||||
autoStart = true;
|
||||
autoRemoveOnStop = true;
|
||||
image = "lscr.io/linuxserver/qbittorrent:latest";
|
||||
environmentFiles = "${config.age.secrets.docker-qbittorrent-env.path}";
|
||||
environmentFiles = ["${config.age.secrets.docker-qbittorrent-envpath}"];
|
||||
environment = {
|
||||
"DOCKER_MODS" = "ghcr.io/t-anc/gsp-qbittorent-gluetun-sync-port-mod:main";
|
||||
"GSP_MINIMAL_LOGS" = "false";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue