From 00423dc7fc7f29a7d3ab2ee634c8ee0e1b26b8e5 Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Tue, 27 Aug 2019 00:46:15 +0200 Subject: [PATCH] use same nixpkgs config for unstable --- home-pc.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home-pc.nix b/home-pc.nix index 092fbb1..2af54cb 100644 --- a/home-pc.nix +++ b/home-pc.nix @@ -6,7 +6,9 @@ { config, pkgs, ... }: let - unstable = import {}; + unstable = import { + config = removeAttrs config.nixpkgs.config [ "packageOverrides" ]; + }; in { imports =