infrastructure/machines/remote-builder-01/hardware-configuration.nix

28 lines
694 B
Nix
Raw Normal View History

# 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") ];
2022-08-15 01:20:35 +02:00
boot.initrd.availableKernelModules =
[ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
2022-08-15 01:20:35 +02:00
fileSystems."/" = {
device = "rpool/root/nixos";
fsType = "zfs";
};
2022-08-15 01:20:35 +02:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/4BC6-A750";
fsType = "vfat";
};
2022-08-15 01:20:35 +02:00
swapDevices = [ ];
}