From a1961bc6857a62edd2b1a66b08e80da3bcc4f6a5 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 25 Mar 2024 00:13:08 +0100 Subject: [PATCH] fix(dregil): Remove nixpkgs-unstable references --- hosts/dregil/configuration.nix | 4 ++-- modules/common-system.nix | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 902735c..4a61670 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -81,8 +81,8 @@ in { ]; # adjust channels to nixpkgs used on this system via this flake - environment.etc."nix/inputs/nixpkgs".source = inputs.nixpkgs-unstable.outPath; - nix.nixPath = [ "nixpkgs=${inputs.nixpkgs-unstable}" ]; + environment.etc."nix/inputs/nixpkgs".source = inputs.nixpkgs.outPath; + nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; nix.settings.max-jobs = 3; nix.settings.cores = 4; diff --git a/modules/common-system.nix b/modules/common-system.nix index b8de7d7..df4851c 100644 --- a/modules/common-system.nix +++ b/modules/common-system.nix @@ -21,10 +21,5 @@ networking.firewall.enable = true; - nix = { - registry = { - nixpkgs.flake = inputs.nixpkgs; - nixpkgs-unstable.flake = inputs.nixpkgs-unstable; - }; - }; + nix = { registry = { nixpkgs.flake = inputs.nixpkgs; }; }; }