Skip to content

Commit

Permalink
Add a simple shell.nix to bring in qmk
Browse files Browse the repository at this point in the history
Solves: qmk#8
  • Loading branch information
evantravers committed Jun 7, 2024
1 parent 7672002 commit f2bae1a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
10 changes: 10 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -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
];
}

0 comments on commit f2bae1a

Please sign in to comment.