2019-10-24 02:20:38 +02:00
|
|
|
|
# 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.
|
2021-09-27 18:53:45 +02:00
|
|
|
|
{ modulesPath, config, lib, pkgs, ... }:
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
|
|
|
|
{
|
2021-09-27 18:53:45 +02:00
|
|
|
|
#imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
|
|
|
|
|
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
|
2019-10-24 02:20:38 +02:00
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/8f2986a3-d2b0-4735-be98-9ec081b87984";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2019-10-24 02:20:38 +02:00
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 1;
|
|
|
|
|
}
|