|
|
@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
|
|
|
|
|
|
# and may be overwritten by future invocations. Please make changes
|
|
|
|
|
|
|
|
# to /etc/nixos/configuration.nix instead.
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
imports =
|
|
|
|
|
|
|
|
[ <nixpkgs/nixos/modules/profiles/qemu-guest.nix>
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ];
|
|
|
|
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
|
|
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
boot.loader.grub.device = lib.mkForce "/dev/vda";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/df8e6a13-8975-4c25-9d6b-b7065cc27086";
|
|
|
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/8a56fa7d-ec2d-4814-b77e-688c0446624c";
|
|
|
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
|
|
|
|
|
|
|
[ { device = "/dev/disk/by-uuid/b5a55d95-9dfc-4efd-8296-23db4bcf1f1e"; }
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 2;
|
|
|
|
|
|
|
|
}
|