From c89dfed81c37bde4ebe5db96f3b8db83f8eea672 Mon Sep 17 00:00:00 2001 From: Pacman99 Date: Wed, 12 May 2021 19:18:11 -0700 Subject: [PATCH] don't import cachix in suites its already imported in the core profile --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d8fd366a..02ef12ae 100644 --- a/flake.nix +++ b/flake.nix @@ -71,7 +71,7 @@ ]; profiles = [ ./profiles ./users ]; suites = { profiles, users, ... }: with profiles; { - base = [ cachix core users.nixos users.root ]; + base = [ core users.nixos users.root ]; }; };