diff --git a/hosts/raptus/container-root.nix b/hosts/raptus/container-root.nix deleted file mode 100644 index 2c29a43..0000000 --- a/hosts/raptus/container-root.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ pkgs, ... }: - -{ - # Runtime - virtualisation.podman = { - enable = true; - autoPrune.enable = true; - dockerCompat = true; - }; - virtualisation.oci-containers.backend = "podman"; - - # Networks - systemd.services."podman-network-test_default" = { - path = [ pkgs.podman ]; - serviceConfig = { - Type = "oneshot"; - RemainAfterExit = true; - ExecStop = "podman network rm -f test_default"; - }; - script = '' - podman network inspect test_default || podman network create test_default - ''; - partOf = [ "podman-compose-test-root.target" ]; - wantedBy = [ "podman-compose-test-root.target" ]; - }; - - # Root service - # When started, this will automatically create all resources and start - # the containers. When stopped, this will teardown all resources. - systemd.targets."podman-compose-test-root" = { - unitConfig = { - Description = "Root target generated by compose2nix."; - }; - wantedBy = [ "multi-user.target" ]; - }; -} diff --git a/hosts/raptus/obsidian-livesync/default.nix b/hosts/raptus/obsidian-livesync/default.nix deleted file mode 100644 index ce67d4d..0000000 --- a/hosts/raptus/obsidian-livesync/default.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: -{ - virtualisation.oci-containers.containers."obsidian-livesync" = { - image = "couchdb"; - environmentFiles = [ config.age.secrets.couchdb.path ]; - volumes = [ - "${./local.ini}:/opt/couchdb/etc/local.ini:rw" - "test_dbdata:/opt/couchdb/data:rw" - ]; - ports = [ "5984:5984/tcp" ]; - log-driver = "journald"; - extraOptions = [ - "--network-alias=couchserver" - "--network=test_default" - ]; - }; - systemd.services."podman-obsidian-livesync" = { - serviceConfig = { - Restart = lib.mkOverride 500 "always"; - }; - after = [ - "podman-network-test_default.service" - "podman-volume-test_dbdata.service" - ]; - requires = [ - "podman-network-test_default.service" - "podman-volume-test_dbdata.service" - ]; - partOf = [ "podman-compose-test-root.target" ]; - wantedBy = [ "podman-compose-test-root.target" ]; - }; - - # Volumes - systemd.services."podman-volume-test_dbdata" = { - path = [ pkgs.podman ]; - serviceConfig = { - Type = "oneshot"; - RemainAfterExit = true; - }; - script = '' - podman volume inspect test_dbdata || podman volume create test_dbdata - ''; - partOf = [ "podman-compose-test-root.target" ]; - wantedBy = [ "podman-compose-test-root.target" ]; - }; - -} diff --git a/hosts/raptus/obsidian-livesync/local.ini b/hosts/raptus/obsidian-livesync/local.ini deleted file mode 100644 index e69de29..0000000