My NixOS config Part 3: Flake-Parts Crusaders nix.ladas552.me
hjem nix nixos impermanence flake-parts nvfetcher niri noctalia

new kernel for NixWool

Ladas552 af7f3ef2 65cccac6

+8 -2
+7 -1
modules/hosts/NixWool/hardware-configuration.nix
··· 3 { 4 lib, 5 modulesPath, 6 ... 7 }: 8 { ··· 20 "virtio_scsi" 21 ]; 22 boot.initrd.kernelModules = [ ]; 23 - boot.kernelModules = [ "kvm-amd" ]; 24 boot.extraModulePackages = [ ]; 25 26 swapDevices = [ ]; 27
··· 3 { 4 lib, 5 modulesPath, 6 + pkgs, 7 ... 8 }: 9 { ··· 21 "virtio_scsi" 22 ]; 23 boot.initrd.kernelModules = [ ]; 24 + boot.kernelModules = [ 25 + "nls_cp437" 26 + "nls_iso8859-1" 27 + ]; 28 boot.extraModulePackages = [ ]; 29 + # Xanmod broken on aarch64-linux, idk 30 + boot.kernelPackages = lib.mkForce pkgs.linuxKernel.packages.linux_6_18; 31 32 swapDevices = [ ]; 33
+1 -1
modules/hosts/NixWool/install.sh
··· 45 46 # Create the pool on the drive, use reasonable settings 47 echo "Creating zroot..." 48 - zpool create -f $ZFS_OPTS zroot /dev/sda2 49 50 # Mount the drives and prepare for the install 51 mkdir -p /mnt
··· 45 46 # Create the pool on the drive, use reasonable settings 47 echo "Creating zroot..." 48 + zpool create -f $ZFS_OPTS zroot /dev/sda3 49 50 # Mount the drives and prepare for the install 51 mkdir -p /mnt