21 lines
698 B
Nix
21 lines
698 B
Nix
# 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 = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
|
||
|
||
networking.interfaces.enp0s5.useDHCP = true;
|
||
swapDevices = [{ device = "/dev/disk/by-label/NIXOS_SWAP"; }];
|
||
fileSystems."/boot" = {
|
||
device = "/dev/disk/by-label/NIXOS_BOOT";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
fileSystems."/" = {
|
||
device = "/dev/disk/by-label/NIXOS_ROOT";
|
||
fsType = "ext4";
|
||
};
|
||
}
|