summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-11-21 23:51:55 +0100
committerlassulus <lassulus@lassul.us>2022-11-21 23:51:55 +0100
commitdc224ed8434c9f6172379659564d288c353b6463 (patch)
tree95d8624d941ba909a3faab7af13b3dd2626c63dc
parent4eb8c33ceb361927a7b0b8e09ccde2bc0e1de518 (diff)
l green.r: use unstable
-rw-r--r--lass/1systems/green/source.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/lass/1systems/green/source.nix b/lass/1systems/green/source.nix
index da137e06..4acdb0c2 100644
--- a/lass/1systems/green/source.nix
+++ b/lass/1systems/green/source.nix
@@ -1,4 +1,6 @@
-{ lib, pkgs, test, ... }:
-if test then {} else {
+{ lib, pkgs, test, ... }: let
+ npkgs = lib.importJSON ../../../krebs/nixpkgs-unstable.json;
+in if test then {} else {
+ nixpkgs.git.ref = lib.mkForce npkgs.rev;
nixpkgs-unstable = lib.mkForce { file = "/var/empty"; };
}