retic: switch to unstable and disable some tests
This commit is contained in:
parent
71e3925991
commit
b31f9f8180
@ -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";
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user