From 510fc4ae671b020326ebe9bf0a7c612ba0e4fe6d Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 1 Dec 2023 11:00:39 -0500 Subject: [PATCH] caches/ssh: enable Infini-DESKTOP cache outside of home --- modules/global/caches/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/caches/ssh.nix b/modules/global/caches/ssh.nix index 50022d5..98c8129 100644 --- a/modules/global/caches/ssh.nix +++ b/modules/global/caches/ssh.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { nix.settings = { - substituters = lib.mkIf (config.networking.hostName != "Infini-DESKTOP" && config.info.loc.home) + substituters = lib.mkIf (config.networking.hostName != "Infini-DESKTOP") ((if config.info.loc.home then (lib.mkOrder 300) else lib.mkAfter) [ "ssh://infini-desktop" ]);