diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-05T19·20-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-05T19·20-0400 |
commit | 4e81c9b636ebfdcf2ed83a8ed1b138918d5296a6 (patch) | |
tree | 9e28fa0446ffb0078b597d714911789d5b00afd8 /default.nix |
Initial commit
My keyboard layout I've been using for a while, plus build scripts. ./flash to flash.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 000000000000..18169b5be1ba --- /dev/null +++ b/default.nix @@ -0,0 +1,49 @@ +{ nixpkgs ? import <nixpkgs> {} +}: + +with nixpkgs; + +rec { + qmkSource = fetchgit { + url = "https://github.com/qmk/qmk_firmware"; + rev = "ab1650606c36f85018257aba65d9c3ff8ec42e71"; + sha256 = "1k59flkvhjzmfl0yz9z37lqhvad7m9r5wy1p1sjk5274rsmylh79"; + fetchSubmodules = true; + }; + + qmk = import "${qmkSource}/shell.nix" { + avr = true; + teensy = true; + arm = false; + }; + + layout = stdenv.mkDerivation { + name = "ergodox_ez_grfn.hex"; + + src = qmkSource; + + inherit (qmk) buildInputs AVR_CFLAGS AVR_ASFLAGS; + + patches = [ ./increase-tapping-delay.patch ]; + + postPatch = '' + mkdir keyboards/ergodox_ez/keymaps/grfn + cp ${./keymap.c} keyboards/ergodox_ez/keymaps/grfn/keymap.c + ''; + + buildPhase = '' + make ergodox_ez:grfn + ''; + + installPhase = '' + cp ergodox_ez_grfn.hex $out + ''; + }; + + flash = writeShellScript "flash.sh" '' + ${teensy-loader-cli}/bin/teensy-loader-cli \ + -v \ + --mcu=atmega32u4 \ + -w ${layout} + ''; +} |