+27
flake.lock
+27
flake.lock
···
1
+
{
2
+
"nodes": {
3
+
"nixpkgs": {
4
+
"locked": {
5
+
"lastModified": 1762233356,
6
+
"narHash": "sha256-cGS3lLTYusbEP/IJIWGgnkzIl+FA5xDvtiHyjalGr4k=",
7
+
"owner": "NixOS",
8
+
"repo": "nixpkgs",
9
+
"rev": "ca534a76c4afb2bdc07b681dbc11b453bab21af8",
10
+
"type": "github"
11
+
},
12
+
"original": {
13
+
"owner": "NixOS",
14
+
"ref": "nixos-25.05",
15
+
"repo": "nixpkgs",
16
+
"type": "github"
17
+
}
18
+
},
19
+
"root": {
20
+
"inputs": {
21
+
"nixpkgs": "nixpkgs"
22
+
}
23
+
}
24
+
},
25
+
"root": "root",
26
+
"version": 7
27
+
}
+18
flake.nix
+18
flake.nix
···
1
+
{
2
+
inputs = {
3
+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
4
+
};
5
+
6
+
outputs = { self, nixpkgs }:
7
+
let
8
+
pkgs = import nixpkgs { system = "x86_64-linux"; };
9
+
in {
10
+
devShells.x86_64-linux.default = pkgs.mkShell {
11
+
packages = with pkgs; [
12
+
tree-sitter clang nodejs
13
+
#rustc cargo clippy rustfmt inetutils python3
14
+
];
15
+
#RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
16
+
};
17
+
};
18
+
}