2021-07-28 23:55:34 +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, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2022-08-15 01:20:35 +02:00
|
|
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
2021-07-28 23:55:34 +02:00
|
|
|
|
|
2022-08-15 01:20:35 +02:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
|
2021-07-28 23:55:34 +02:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2022-08-15 01:20:35 +02:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "rpool/root/nixos";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2021-07-28 23:55:34 +02:00
|
|
|
|
|
2022-08-15 01:20:35 +02:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/4BC6-A750";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2021-07-28 23:55:34 +02:00
|
|
|
|
|
2022-08-15 01:20:35 +02:00
|
|
|
|
swapDevices = [ ];
|
2021-07-28 23:55:34 +02:00
|
|
|
|
|
|
|
|
|
}
|