diff options
author | Karel Kočí <cynerd@email.cz> | 2023-02-06 20:44:14 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-02-06 20:44:14 +0100 |
commit | 8b96dd41971e008a6a2527fe10c6670d2248117e (patch) | |
tree | c7327ec26648e62279778696e38dc70415d16151 /devShells | |
parent | adc6902502aa03509d138e9220843bf4d6a1a390 (diff) | |
download | nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.tar.gz nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.tar.bz2 nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.zip |
Apply statix suggestions
Diffstat (limited to 'devShells')
-rw-r--r-- | devShells/nuttx.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devShells/nuttx.nix b/devShells/nuttx.nix index 14367c6..78dd9c0 100644 --- a/devShells/nuttx.nix +++ b/devShells/nuttx.nix @@ -18,9 +18,9 @@ with nixpkgs.lib; let libc = "newlib-nano"; gcc = { - arch = arch; + inherit arch; } - // (optionalAttrs (fpu != null) {fpu = fpu;}); + // (optionalAttrs (fpu != null) {inherit fpu;}); }; }; in |