Skip to content

Commit 32ddbb8

Browse files
committed
pr comments
1 parent 810144f commit 32ddbb8

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

flake.nix

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,22 @@
22
description = "NodeJS 16_x project";
33

44
inputs = {
5-
# Specify the source of Home Manager and Nixpkgs.
6-
branch-nix.url = "git+ssh://[email protected]/BranchMetrics/nix";
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
6+
utils.url = "github:numtide/flake-utils";
77
};
88

9-
outputs = { self, branch-nix }:
9+
outputs = { self }:
1010
let
11-
nixpkgs = branch-nix.nixpkgs;
12-
nixpkgs-unstable = branch-nix.nixpkgs-unstable;
13-
extra-pkgs = branch-nix.packages;
14-
utils = branch-nix.utils;
15-
system-utils = branch-nix.system-utils;
11+
nixpkgs = nixpkgs;
12+
extra-pkgs = packages;
13+
utils = utils;
14+
system-utils = system-utils;
1615
in
1716
utils.lib.eachDefaultSystem (system:
1817
let
1918
stable-pkgs = nixpkgs.legacyPackages.${system};
20-
unstable-pkgs = nixpkgs.legacyPackages.${system};
2119
pkgs = stable-pkgs // {
2220
extra-pkgs = extra-pkgs.${system};
23-
unstable = unstable-pkgs;
2421
};
2522
bazel-os = system-utils.getBazelOs system;
2623
nodejs = pkgs.extra-pkgs.nodejs-16_x;

0 commit comments

Comments
 (0)