This commit is contained in:
Evan Travers 2025-04-24 14:45:25 +02:00 committed by GitHub
commit 4caf78355f
Failed to generate hash of commit
2 changed files with 11 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
qmk
];
}