diff options
author | Linnnus <[email protected]> | 2023-12-29 17:44:19 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-12-29 17:44:31 +0100 |
commit | 8c4e59b2328ee008f1d479c20a58793fe5baacbe (patch) | |
tree | 2febb025e4900fcba6afa7ec182b41d76c623d55 | |
parent | c9bd82994c9b5b104112bc9472f0bb9a3edacd7d (diff) |
home/dev-utils: Use unstable deno
-rw-r--r-- | flake.lock | 12 | ||||
-rw-r--r-- | home/dev-utils/default.nix | 2 | ||||
-rw-r--r-- | hosts/common.nix | 2 |
3 files changed, 8 insertions, 8 deletions
@@ -165,11 +165,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1701952659, - "narHash": "sha256-TJv2srXt6fYPUjxgLAL0cy4nuf1OZD4KuA1TrCiQqg0=", + "lastModified": 1703467016, + "narHash": "sha256-/5A/dNPhbQx/Oa2d+Get174eNI3LERQ7u6WTWOlR1eQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b4372c4924d9182034066c823df76d6eaf1f4ec4", + "rev": "d02d818f22c777aa4e854efc3242ec451e5d462a", "type": "github" }, "original": { @@ -181,11 +181,11 @@ }, "nixpkgs-unstable": { "locked": { - "lastModified": 1698924604, - "narHash": "sha256-GCFbkl2tj8fEZBZCw3Tc0AkGo0v+YrQlohhEGJ/X4s0=", + "lastModified": 1703438236, + "narHash": "sha256-aqVBq1u09yFhL7bj1/xyUeJjzr92fXVvQSSEx6AdB1M=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "fa804edfb7869c9fb230e174182a8a1a7e512c40", + "rev": "5f64a12a728902226210bf01d25ec6cbb9d9265b", "type": "github" }, "original": { diff --git a/home/dev-utils/default.nix b/home/dev-utils/default.nix index b916cbb..67bf017 100644 --- a/home/dev-utils/default.nix +++ b/home/dev-utils/default.nix @@ -18,7 +18,7 @@ # interpreaters cling - deno + unstable.deno (python311Full.withPackages (ps: with ps; [ virtualenv diff --git a/hosts/common.nix b/hosts/common.nix index 794fcdc..3789fb2 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -15,7 +15,7 @@ flakeOutputs.overlays.modifications # Add unstable nixpkgs. - (final: prev: {unstable = flakeInputs.unstable-nixpkgs.legacyPackages.${pkgs.system};}) + (final: prev: {unstable = flakeInputs.nixpkgs-unstable.legacyPackages.${pkgs.system};}) ]; # Use overlays from this repo for building system configuration as well as |