Skip to content

Commit fbaa0b9

Browse files
committed
Cleanup, remove freckle/flakes
Presuming that repos in the `freckle` org will either have their own Nix flake or that `freckle/flakes` can be used ad-hoc.
1 parent 227c280 commit fbaa0b9

File tree

2 files changed

+10
-173
lines changed

2 files changed

+10
-173
lines changed

flake.lock

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

flake.nix

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,25 @@
11
{
22
inputs = {
3-
nixpkgs-23-05.url = "github:nixos/nixpkgs/nixos-23.05";
4-
freckle.url = "github:freckle/flakes?dir=main";
3+
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
54
flake-utils.url = "github:numtide/flake-utils";
65
};
76
outputs = inputs:
87
inputs.flake-utils.lib.eachDefaultSystem (
98
system: let
10-
nixpkgsArgs = {
9+
pkgs = import inputs.nixpkgs {
1110
inherit system;
1211
config = {};
1312
};
14-
nixpkgs-23-05 = import inputs.nixpkgs-23-05 nixpkgsArgs;
15-
freckle = inputs.freckle.packages.${system};
1613
in rec {
17-
packages = rec {
18-
nodejs = freckle.nodejs-18-18-x;
19-
typescript = nixpkgs-23-05.typescript;
20-
};
21-
devShells.js = nixpkgs-23-05.mkShell {
14+
devShells.js = pkgs.mkShell {
2215
name = "js";
23-
buildInputs = with packages; [
16+
buildInputs = with pkgs; [
2417
nodejs
2518
typescript
2619
];
2720
};
2821
devShells.default = devShells.js;
29-
formatter = nixpkgs-23-05.alejandra;
22+
formatter = pkgs.alejandra;
3023
}
3124
);
3225
}

0 commit comments

Comments
 (0)