Switch the default devshell to lagarto-ox-rd

This commit is contained in:
Rodrigo Arias 2024-09-12 10:30:56 +02:00
parent 42cd8a46de
commit a397ede43d

View File

@ -58,7 +58,7 @@
# A development shell with QEMU ready to boot the RISC-V system in an x86
# machine.
devShells.x86_64-linux.default =
devShells.x86_64-linux.qemu-lagarto-hun =
let
nixosconf = self.nixosConfigurations.qemu-nc;
syspkgs = nixosconf.pkgs;
@ -70,6 +70,7 @@
NIXOS_SYSTEM_TOPLEVEL = toplevel;
OPENSBI = syspkgs.opensbi-uboot;
};
devShells.x86_64-linux.lagarto-hun =
let
nixosconf = self.nixosConfigurations.lagarto-hun;
@ -127,5 +128,8 @@
TOPLEVEL = "";
ROOTFS = "";
});
devShells.x86_64-linux.default =
self.outputs.devShells.x86_64-linux.lagarto-ox-rd;
};
}