From d09ae68cdf62144cf497a565c9150264675bdc7d Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 20 Nov 2018 22:39:49 +0100 Subject: [PATCH] remove lumi cache example --- roles/workstation.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/roles/workstation.nix b/roles/workstation.nix index 4d26be7..e2b32eb 100644 --- a/roles/workstation.nix +++ b/roles/workstation.nix @@ -1,11 +1,4 @@ { config, lib, pkgs, ... }: -let - nixnetrc = pkgs.writeText "netrc" '' - machine cache.lumi.guide - login lumi - password aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa= - ''; -in { imports = [ @@ -45,7 +38,6 @@ in trustedBinaryCaches = config.nix.binaryCaches ++ [ "ssh://yorick@jupiter.serokell.io" "ssh-ng://jupiter" - "https://cache.lumi.guide" "https://serokell.cachix.org" ]; binaryCachePublicKeys = [ @@ -55,8 +47,5 @@ in "serokell.cachix.org-1:5DscEJD6c1dD1Mc/phTIbs13+iW22AVbx0HqiSb+Lq8=" "disciplina.cachix.org-1:zDeIFV5cu22v04EUuRITz/rYxpBCGKY82x0mIyEYjxE=" ]; - extraOptions = '' - netrc-file = ${nixnetrc} - ''; }; }