2021-08-17 20:31:59 +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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2022-08-14 16:49:30 +02:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2021-08-17 20:31:59 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2022-08-14 16:49:30 +02:00
|
|
|
|
{
|
|
|
|
|
device = "zroot/root/nixos";
|
2021-08-17 20:31:59 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2022-08-14 16:49:30 +02:00
|
|
|
|
{
|
|
|
|
|
device = "zroot/root/home";
|
2021-08-17 20:31:59 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2022-08-14 16:49:30 +02:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/E6D6-572B";
|
2021-08-17 20:31:59 +02:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
}
|