From 8567dbf7b45cb329ff791ead42d6407afb5421af Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sat, 11 Sep 2021 20:23:53 +0200 Subject: [PATCH] fixed nixos-rebuild switch warnings for workhorse --- configs/workhorse/configuration.nix | 4 ++-- images/remote-install/remote-install.nix | 2 +- system/server/initssh.nix | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/workhorse/configuration.nix b/configs/workhorse/configuration.nix index f0dc263..d00c043 100644 --- a/configs/workhorse/configuration.nix +++ b/configs/workhorse/configuration.nix @@ -4,7 +4,7 @@ ./hardware-configuration.nix - ./bepasty.nix + #./bepasty.nix not working https://github.com/NixOS/nixpkgs/issues/116326 #./castget.nix ./gogs.nix ./grafana.nix @@ -28,7 +28,7 @@ #./metabase.nix #./jupyter.nix ./mysql.nix - ./property.nix + #./property.nix flask sucks, find something else ./finance.nix #./mining.nix ]; diff --git a/images/remote-install/remote-install.nix b/images/remote-install/remote-install.nix index 61b82d3..7d1d24d 100644 --- a/images/remote-install/remote-install.nix +++ b/images/remote-install/remote-install.nix @@ -3,7 +3,7 @@ services.tor = { enable = true; client.enable = true; - hiddenServices.liveos.map = [{ port = 1337; }]; + relay.onionServices.liveos.map = [{ port = 1337; }]; }; environment.systemPackages = [ diff --git a/system/server/initssh.nix b/system/server/initssh.nix index decec0b..7c6dddd 100644 --- a/system/server/initssh.nix +++ b/system/server/initssh.nix @@ -50,7 +50,7 @@ in { services.tor = { enable = true; client.enable = true; - hiddenServices.bootup.map = [{ port = 23; }]; + relay.onionServices.bootup.map = [{ port = 23; }]; }; })