2024-09-23 01:15:32 +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 =
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
2024-10-26 15:17:38 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
2024-09-23 01:15:32 +02:00
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
2024-10-26 15:17:38 +02:00
|
|
|
|
boot.kernelParams = [ "intel_iommu=on" "iommu=pt" ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" "vfio_pci" "drm" "drm_kms_helper"];
|
2024-09-23 01:15:32 +02:00
|
|
|
|
boot.extraModulePackages = [ ];
|
2024-10-26 15:17:38 +02:00
|
|
|
|
boot.extraModprobeConfig = ''
|
|
|
|
|
options vfio-pci ids=8086:125c,8086:15c4
|
|
|
|
|
'';
|
2024-09-23 01:15:32 +02:00
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2024-10-26 15:17:38 +02:00
|
|
|
|
{ device = "/dev/disk/by-uuid/a12c97d6-8cbb-4853-8642-ba8760a43584";
|
2024-09-23 01:15:32 +02:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2024-10-26 15:17:38 +02:00
|
|
|
|
{ device = "/dev/disk/by-uuid/5526-5FF3";
|
2024-09-23 01:15:32 +02:00
|
|
|
|
fsType = "vfat";
|
2024-10-26 15:17:38 +02:00
|
|
|
|
options = [ "fmask=0077" "dmask=0077" ];
|
2024-09-23 01:15:32 +02:00
|
|
|
|
};
|
2024-10-26 15:17:38 +02:00
|
|
|
|
|
|
|
|
|
fileSystems."/vm-images" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/4f4505c3-8942-4767-b7f2-b27087aa9ec1";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
swapDevices = [ ];
|
2024-09-23 01:15:32 +02:00
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno2.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno3.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno4.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp7s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp8s0.useDHCP = lib.mkDefault true;
|
2024-10-26 15:17:38 +02:00
|
|
|
|
# networking.interfaces.wlp3s0f0.useDHCP = lib.mkDefault true;
|
2024-09-23 01:15:32 +02:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|