fix: rinnosuke

This commit is contained in:
Kat Inskip 2025-12-03 20:21:53 -08:00
parent 0178bff042
commit 72759c3286
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 7 additions and 4 deletions

View file

@ -16,9 +16,12 @@ _: let
boot = {
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
kernelModules = ["kvm-amd"];
loader.grub.devices = [
"/dev/disk/by-uuid/8B8C-6502"
];
loader.grub = {
enable = true;
device = [
"/dev/disk/by-uuid/8B8C-6502"
];
};
};
fileSystems = {
@ -53,7 +56,6 @@ _: let
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
boot.loader.grub.enable = true;
system.stateVersion = "25.05";
};
in {