libkookie: include manjaro kernel configuration

wip/nixpkgs-raku
Katharina Fey 3 years ago
parent c1fdc727f9
commit c54e75331d
Signed by: kookie
GPG Key ID: 90734A9E619C8A6C
  1. 2
      infra/libkookie/overlays/default.nix
  2. 6
      infra/libkookie/roots/tempest.nix

@ -24,6 +24,8 @@ self: super: {
htop = self.callPackage ./patches/htop { inherit (super) htop; };
iosevka = self.callPackage ./patches/iosevka { inherit (super) iosevka; };
any-nix-shell = self.callPackage ./patches/any-nix-shell { inherit (super) any-nix-shell; };
manjaro-kernel = self.callPackage ./patches/manjaro-kernel { inherit (super) fetchgit runCommand linuxPackages_custom; };
}
## Include the rust overlay

@ -122,6 +122,12 @@ in
[ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "nvme" "nvme_core" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelPackages = with pkgs; linuxPackagesFor manjaro-kernel;
boot.kernelParams = [
"boot.debug1devices"
"pstore_blk.blkdev=/dev/sdc1"
"best_effort=y"
];
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
services.zfs.autoSnapshot.enable = true;

Loading…
Cancel
Save