2023-10-21 04:39:51 +00: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.
|
2023-12-23 01:12:44 +00:00
|
|
|
|
{
|
2023-12-27 03:42:13 +00:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
modulesPath,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
imports = [
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
2023-11-05 02:44:54 +00:00
|
|
|
|
|
2023-12-27 03:42:13 +00:00
|
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
|
|
|
|
|
boot.initrd.kernelModules = ["dm-snapshot"];
|
|
|
|
|
boot.kernelModules = ["kvm-intel"];
|
|
|
|
|
boot.extraModulePackages = [];
|
2023-11-05 02:44:54 +00:00
|
|
|
|
|
2023-12-27 03:42:13 +00:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/09e1694e-5236-45d3-b454-1dbe9ac473da";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2023-11-05 02:44:54 +00:00
|
|
|
|
|
2023-12-27 03:42:13 +00:00
|
|
|
|
fileSystems."/boot/efi" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/20C7-3E47";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2023-11-05 02:44:54 +00:00
|
|
|
|
|
2023-12-27 03:42:13 +00:00
|
|
|
|
swapDevices = [
|
|
|
|
|
{device = "/dev/disk/by-uuid/9d8aab67-42c8-4139-a178-275523260792";}
|
|
|
|
|
];
|
2023-10-21 04:39:51 +00: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.wlp0s20f3.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|