Basic baldur configuration

This commit is contained in:
Filippo Berto 2022-12-18 12:46:47 +01:00
parent 11d1a62c8f
commit 380af1410a
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
7 changed files with 52 additions and 73 deletions

View file

@ -0,0 +1,22 @@
{ modulesPath, ... }:
{
imports =
[
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{
device = "/dev/disk/by-uuid/7fa05ac4-8e10-4994-bb7d-4be88e4a6696";
fsType = "ext4";
};
swapDevices = [ ];
}