Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit c17d04c

Browse files
committed
switch to older npmlock2nix
1 parent 99b596a commit c17d04c

4 files changed

Lines changed: 31 additions & 20 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.psc*
22
.direnv
33
result
4-
node_modules
4+
node_modules
5+
.parcel-cache

flake.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/flake.nix

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
};
1010
flake-utils.url = "github:numtide/flake-utils/c0e246b9b83f637f4681389ecabcb2681b4f3af0";
1111
npmlock2nix_ = {
12-
# url = "github:nix-community/npmlock2nix/5c4f247688fc91d665df65f71c81e0726621aaa8";
13-
url = "github:tlxzilia/npmlock2nix/f63dc087b144fb608e99e6239ceb69c68449482b";
12+
url = "github:nix-community/npmlock2nix/5c4f247688fc91d665df65f71c81e0726621aaa8";
13+
# url = "github:tlxzilia/npmlock2nix/f63dc087b144fb608e99e6239ceb69c68449482b";
1414
flake = false;
1515
};
1616
};
@@ -40,10 +40,11 @@
4040
{
4141
devShells =
4242
{
43-
default = pkgs.mkShell {
44-
buildInputs = myTools;
45-
};
46-
node =
43+
default =
44+
# pkgs.mkShell {
45+
# buildInputs = myTools;lo
46+
# };
47+
# node =
4748
(npmlock2nix.shell {
4849
src = ./.;
4950
}).overrideAttrs
@@ -55,4 +56,13 @@
5556
);
5657
};
5758
});
59+
60+
nixConfig = {
61+
extra-substituters = [
62+
"https://cache.nixos.org/"
63+
];
64+
extra-trusted-public-keys = [
65+
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
66+
];
67+
};
5868
}

0 commit comments

Comments
 (0)