2023-07-06 20:03:25 +02:00
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
];
|
|
|
|
|
2023-07-20 00:06:31 +02:00
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
|
2023-07-06 20:03:25 +02:00
|
|
|
boot.initrd.kernelModules = [ ];
|
2023-07-20 00:06:31 +02:00
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
2023-07-06 20:03:25 +02:00
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2023-07-20 00:06:31 +02:00
|
|
|
{ device = "/dev/disk/by-uuid/427c555e-be1c-480c-99c1-dd50ff68b89d";
|
|
|
|
fsType = "btrfs";
|
2023-07-06 20:03:25 +02:00
|
|
|
};
|
|
|
|
|
2023-09-08 16:10:15 +02:00
|
|
|
fileSystems."/run/media/data" =
|
|
|
|
{ device = "/dev/disk/by-uuid/32cf9449-1cd5-4328-974f-52d4e0a564cc";
|
|
|
|
fsType = "btrfs";
|
|
|
|
};
|
|
|
|
|
2023-07-20 00:06:31 +02:00
|
|
|
fileSystems."/boot" =
|
|
|
|
{ device = "/dev/disk/by-uuid/52D3-DEAB";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
2023-07-06 20:03:25 +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;
|
2023-07-20 00:06:31 +02:00
|
|
|
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
|
2023-07-06 20:03:25 +02:00
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2023-07-20 00:06:31 +02:00
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2023-07-06 20:03:25 +02:00
|
|
|
}
|