-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathflake.nix
More file actions
36 lines (33 loc) · 904 Bytes
/
flake.nix
File metadata and controls
36 lines (33 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "Flake file for Status Web repo ";
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.11";
};
outputs =
{ self, nixpkgs }:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forEachSystem = nixpkgs.lib.genAttrs supportedSystems;
pkgsFor = forEachSystem (system: import nixpkgs { inherit system; });
in
{
formatter = forEachSystem (system: pkgsFor.${system}.nixpkgs-fmt);
devShells = forEachSystem (system: {
default = pkgsFor.${system}.mkShellNoCC {
packages = with pkgsFor.${system}.buildPackages; [
ghp-import # 2.1.0
git # 2.51.2
nodejs_22 # 22.22.2
openssh # 10.2p1
pnpm # 10.28.0
foundry # 1.4.4
];
};
});
};
}