Add dev-shell flake

This commit is contained in:
2026-06-16 12:26:59 +02:00
parent 565363d67d
commit bb28e1a65f
4 changed files with 52 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }:
let
forAllSystems = f:
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
]
(s: f nixpkgs.legacyPackages.${s});
in
{
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
kicad
];
};
});
};
}