From 9808c374099aea6a0d15c3bd69221093112f2036 Mon Sep 17 00:00:00 2001 From: xenia Date: Sat, 8 Jun 2024 22:00:14 +0200 Subject: [PATCH] nixpkgs registry by git rev, not store path --- darwin.nix | 5 ++++- nixos/base.nix | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/darwin.nix b/darwin.nix index fd168e68..51bcce1a 100644 --- a/darwin.nix +++ b/darwin.nix @@ -12,7 +12,10 @@ from = { type = "indirect"; id = "templates"; }; to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; }; }; - nixpkgs.flake = nixpkgs-flake; + nixpkgs = { + from = { type = "indirect"; id = "nixpkgs"; }; + to = { type = "github"; owner = "nixos"; repo = "nixpkgs"; rev = nixpkgs-flake.rev; }; + }; nixpkgs-unstable = { from = { type = "indirect"; id = "nixpkgs-unstable"; }; to = { type = "github"; owner = "nixos"; repo = "nixpkgs"; ref = "nixos-unstable"; }; diff --git a/nixos/base.nix b/nixos/base.nix index 2dbeb3f1..068e130b 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -16,7 +16,10 @@ from = { type = "indirect"; id = "templates"; }; to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; }; }; - nixpkgs.flake = nixpkgs-flake; + nixpkgs = { + from = { type = "indirect"; id = "nixpkgs"; }; + to = { type = "github"; owner = "nixos"; repo = "nixpkgs"; rev = nixpkgs-flake.rev; }; + }; nixpkgs-unstable = { from = { type = "indirect"; id = "nixpkgs"; }; to = "github:nixos/nixpkgs/nixos-unstable";