traxys: Dev env

This commit is contained in:
traxys 2025-01-16 21:40:36 +01:00
parent 7b83bb9d26
commit 2521ede1db
4 changed files with 88 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
flake-utils,
nixpkgs,
self,
}:
(flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ qmk ];
};
}
));
}