Initial commit

This commit is contained in:
Alexander Kobjolke 2021-07-09 08:17:22 +00:00
commit 614b5ca368
4 changed files with 204 additions and 0 deletions

View file

@ -0,0 +1,25 @@
# 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, modulesPath, ... }:
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ata_piix" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/013ed4ac-ebed-49cd-8214-b776e613e27f";
fsType = "ext4";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/078ce0eb-71d2-4f03-87f4-849931e7ae81"; }
];
}