Remove the docker module from ttrss and ttrss-postgres

This commit is contained in:
Andreas Zweili 2022-11-03 15:24:48 +01:00
parent 52fd4ff567
commit 0a4b5956c5
3 changed files with 1 additions and 4 deletions

View File

@ -9,7 +9,6 @@ in
inherit domain inputs pkgs;
})
"${inputs.self}/modules/data-share"
"${inputs.self}/modules/docker"
"${inputs.self}/modules/postgresql"
];

View File

@ -1,8 +1,5 @@
{ domain, inputs }: { config, ... }:
{
imports = [
"${inputs.self}/modules/docker"
];
age.secrets.ttrssEnv.file = "${inputs.self}/scrts/ttrss_env.age";
virtualisation.oci-containers = {

View File

@ -19,6 +19,7 @@ in
(import "${inputs.self}/modules/ttrss" {
inherit domain inputs;
})
"${inputs.self}/modules/docker"
"${inputs.self}/modules/mariadb"
];
}