use nixos-unstable again, with latest nodejs

This commit is contained in:
778a69cd 2023-08-08 20:52:25 +02:00
parent f6a1b2822d
commit f514ddd726
2 changed files with 7 additions and 7 deletions

View file

@ -2,17 +2,17 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1662116689, "lastModified": 1691368598,
"narHash": "sha256-UB5H2/AjhY5OgooCXeLxYpW9w/wYIwOWRDu+VdPo858=", "narHash": "sha256-ia7li22keBBbj02tEdqjVeLtc7ZlSBuhUk+7XTUFr14=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "da141d2fef4636aca767188e7a9f6e89e65264ce", "rev": "5a8e9243812ba528000995b294292d3b5e120947",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "da141d2fef4636aca767188e7a9f6e89e65264ce",
"type": "github" "type": "github"
} }
}, },

View file

@ -1,7 +1,7 @@
{ {
description = "A very basic flake"; description = "A very basic flake";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/da141d2fef4636aca767188e7a9f6e89e65264ce"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: { outputs = { self, nixpkgs }: {
@ -17,9 +17,9 @@
cmake cmake
imagemagick imagemagick
(yarn.override { (yarn.override {
nodejs = nodejs-16_x; nodejs = nodejs-18_x;
}) })
nodejs-16_x nodejs-18_x
]; ];
}; };