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