nix: pin nixpkgs on nixos/nix-darwin
Alan Pearce alan@alanpearce.eu
Sun, 12 Jan 2025 16:29:36 +0100
1 files changed, 14 insertions(+), 2 deletions(-)
M system/settings/configuration/nix.nix → system/settings/configuration/nix.nix
@@ -1,6 +1,6 @@-{ config -, lib +{ inputs , pkgs +, lib , ... }: { nix = { @@ -28,5 +28,17 @@ gc = { automatic = lib.mkDefault true; options = lib.mkDefault "--delete-older-than 14d"; }; + + registry = + if pkgs.stdenv.isDarwin + then { + nixpkgs.flake = inputs.nixpkgs; + } else { + nixpkgs.to = { + type = "path"; + path = pkgs.path; + }; + + }; }; }