From 0ee2fd1e13127b76c2bdc82090f67d21b464f8bd Mon Sep 17 00:00:00 2001 From: kiana-S Date: Thu, 24 Mar 2022 10:27:50 -0400 Subject: [PATCH] Unpin nixpkgs from config It was a nice idea, but too much of a hassle to update for actual everyday use. The 'nix registry' commands are easier to use anyways. --- common/config/config.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/config/config.nix b/common/config/config.nix index a81d3b5..fa1630e 100644 --- a/common/config/config.nix +++ b/common/config/config.nix @@ -9,9 +9,6 @@ nixpkgs, # The flake's input version of nixpkgs ''; nixpkgs.config.allowUnfree = true; nixpkgs.overlays = [ nur.overlay ]; - - # Pin nixpkgs to the flake input - nix.registry.nixpkgs.flake = nixpkgs; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true;