From 85843bbd55df4399dbaa5daa0a38f88336512b54 Mon Sep 17 00:00:00 2001 From: Jake Hillion Date: Fri, 19 Jan 2024 22:56:18 +0000 Subject: [PATCH] tywin: remove storj The returns of Storj have been diminishing and the database component is really hard work on the drives. Disable it for now, and I'll delete the storage. If this makes sense again in the future it will involve setting up new nodes. --- .../default.nix | 41 ------------------- 1 file changed, 41 deletions(-) diff --git a/hosts/tywin.storage.ts.hillion.co.uk/default.nix b/hosts/tywin.storage.ts.hillion.co.uk/default.nix index 0f84fb0..d7651cb 100644 --- a/hosts/tywin.storage.ts.hillion.co.uk/default.nix +++ b/hosts/tywin.storage.ts.hillion.co.uk/default.nix @@ -42,14 +42,6 @@ interval = "Tue, 02:00"; }; - # fileSystems."/mnt/d0".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d1".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d2".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d3".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d4".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d5".options = [ "x-systemd.mount-timeout=3m" ]; - fileSystems."/mnt/d6".options = [ "x-systemd.mount-timeout=3m" ]; - ## Backups ### Git age.secrets."git/git_backups_ecdsa".file = ../../secrets/git/git_backups_ecdsa.age; @@ -195,39 +187,6 @@ plotDirectories = builtins.genList (i: "/mnt/d${toString i}/plots/contract-k32") 7; }; - ## Storj - age.secrets."storj/auth" = { - file = ../../secrets/storj/auth.age; - owner = "storj"; - group = "storj"; - }; - custom.storj = { - enable = true; - openFirewall = true; - email = "jake+storj@hillion.co.uk"; - wallet = "0x03cebe2608945D51f0bcE6c5ef70b4948fCEcfEe"; - }; - - custom.storj.instances = - let - mkStorj = index: { - name = "d${toString index}"; - value = { - configDir = "/mnt/d${toString index}/storj/config"; - identityDir = "/mnt/d${toString index}/storj/identity"; - authorizationTokenFile = config.age.secrets."storj/auth".path; - - serverPort = 28967 + index; - externalAddress = "d${toString index}.tywin.storj.hillion.co.uk:${toString (28967 + index)}"; - consoleAddress = "100.115.31.91:${toString (14002 + index)}"; - - storage = "1500GB"; - }; - }; - instances = [ 1 2 3 ]; - in - builtins.listToAttrs (builtins.map mkStorj instances); - ## Downloads custom.services.downloads = { metadataPath = "/data/downloads/metadata";