baldur: restore setup

This commit is contained in:
Filippo Berto 2023-10-02 22:15:57 +02:00
parent 013b8ac858
commit 0f820a99ef
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
19 changed files with 115 additions and 118 deletions

View file

@ -11,7 +11,7 @@
initrd.kernelModules = [ "virtio_scsi" ];
kernelModules = [ "virtio_pci" "virtio_net" ];
loader = {
grub.device = "/dev/vda";
grub.device = "/dev/sda";
timeout = 0;
grub.configurationLimit = 0;
};
@ -284,5 +284,5 @@
};
};
system.stateVersion = "22.11";
system.stateVersion = "23.05";
}

View file

@ -3,14 +3,13 @@
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules =
[ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "virtio_blk" ];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/7fa05ac4-8e10-4994-bb7d-4be88e4a6696";
device = "/dev/disk/by-uuid/47e1437c-ca95-45e2-a3e1-45ad10ae9474";
fsType = "ext4";
};

View file

@ -47,5 +47,5 @@
# ../../modules/hm/noti.nix
];
home.stateVersion = "22.05";
home.stateVersion = "23.05";
}