diff options
author | Maxwell Beck <max@rastertail.net> | 2025-05-28 17:58:20 -0500 |
---|---|---|
committer | Maxwell Beck <max@rastertail.net> | 2025-05-28 17:58:20 -0500 |
commit | 5660f7984f5aee21dd248bb721987bacde290bc8 (patch) | |
tree | 146f9aa2c6b5270b6c6c588f17cac0683048f82d /flake.nix | |
parent | d48c0668da0f319b57b1fb47f93843a851d49339 (diff) |
WIP: USB MSC interface
Real quick and dirty at the moment... but working!
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 4c97fc4..a98ac73 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ }; outputs = { self, nixpkgs }: let - system = "aarch64-darwin"; + system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; pico1541 = { stdenvNoCC, cmake, ninja, python3, gcc-arm-embedded-13, pico-sdk, picotool }: stdenvNoCC.mkDerivation { |