We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 955691a + fd71dac commit 73745a3Copy full SHA for 73745a3
devenv.nix
@@ -3,9 +3,16 @@
3
{
4
packages = with pkgs; [
5
systemd # libudev
6
+ # For UEFI building and testing
7
+ parted
8
+ gnumake
9
+ qemu
10
];
11
- languages.rust.enable = true;
- # https://devenv.sh/reference/options/#languagesrustchannel
- languages.rust.channel = "stable";
12
+ languages.rust = {
13
+ enable = true;
14
+ targets = [ "x86_64-unknown-uefi" ];
15
+ # https://devenv.sh/reference/options/#languagesrustchannel
16
+ channel = "stable";
17
+ };
18
}
0 commit comments