tweak(cachix): increase priority of ssh at home

This commit is contained in:
Infinidoge 2022-05-19 10:27:22 -04:00
parent a322236785
commit 336ffb949b
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ lib, ... }:
{ config, lib, ... }:
{
nix.settings.substituters = lib.mkAfter [
nix.settings.substituters = (if config.info.loc.home then (lib.mkOrder 300) else lib.mkAfter) [
"ssh://server.doge-inc.net"
];
}