Initial commit

This commit is contained in:
2025-04-15 01:51:07 +02:00
commit fb2879b129
16 changed files with 1088 additions and 0 deletions

25
flake.nix Normal file
View File

@@ -0,0 +1,25 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
outputs =
{ self, nixpkgs, ... }:
let
system = "x86_64-linux";
in
{
devShells."${system}".default =
let
pkgs = import nixpkgs {
inherit system;
};
in
pkgs.mkShell {
packages = with pkgs; [
clang
platformio
];
shellHook = "";
};
};
}