28 lines
752 B
Nix
28 lines
752 B
Nix
{ config, lib, pkgs, modulesPath, ... }: {
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix" ) ];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
device = "/dev/sda";
|
|
efiSupport = true;
|
|
};
|
|
|
|
boot.initrd.availableKernelModules =
|
|
[ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/25df457a-21d0-41ab-9de5-88ffc00e3469";
|
|
fsType = "btrfs";
|
|
};
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/F24E-74FA";
|
|
fsType = "vfat";
|
|
options = [ "defaults" ];
|
|
};
|
|
}
|