retic: switch to unstable and disable some tests

This commit is contained in:
Aaron Bieber 2024-09-30 18:33:42 -06:00
parent 71e3925991
commit b31f9f8180
No known key found for this signature in database
2 changed files with 17 additions and 3 deletions

View File

@ -258,7 +258,7 @@
nixos-hardware.nixosModules.framework-11th-gen-intel
] "stan";
weather = buildSys "aarch64-linux" stable [ ] "weather";
retic = buildSys "aarch64-linux" stable [ ] "retic";
retic = buildSys "aarch64-linux" unstable [ ] "retic";
faf = buildSys "x86_64-linux" stable [ ./configs/hardened.nix ] "faf";
box = buildSys "x86_64-linux" unstable [ ./configs/hardened.nix ] "box";

View File

@ -2,15 +2,29 @@
, ...
}:
{
_module.args.isUnstable = false;
_module.args.isUnstable = true;
imports = [
./hardware-configuration.nix
];
nixpkgs.overlays = [
(_: super: {
boehmgc = super.boehmgc.overrideAttrs (_: {
doCheck = false;
});
})
(_: super: {
libuv = super.libuv.overrideAttrs (_: {
doCheck = false;
});
})
];
myEmacs.enable = false;
boot = {
initrd.availableKernelModules = [ "usbhid" "usb_storage" "vc4" ];
kernelPackages = pkgs.linuxPackages;
#kernelModules = [ "raspberrypi_ts" "rtc-ds3232" "rtc-ds1307" ];
loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;