2025-07-30 16:25:01 +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.
|
2025-07-30 16:46:08 +02:00
|
|
|
|
{
|
|
|
|
|
|
config,
|
|
|
|
|
|
lib,
|
|
|
|
|
|
pkgs,
|
|
|
|
|
|
modulesPath,
|
|
|
|
|
|
...
|
|
|
|
|
|
}:
|
2025-07-30 16:25:01 +02:00
|
|
|
|
|
|
|
|
|
|
{
|
2025-07-30 16:46:08 +02:00
|
|
|
|
imports = [
|
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
|
];
|
2025-07-30 16:25:01 +02:00
|
|
|
|
|
2025-07-30 16:46:08 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
|
|
"ehci_pci"
|
|
|
|
|
|
"ahci"
|
|
|
|
|
|
"usbhid"
|
|
|
|
|
|
"sd_mod"
|
|
|
|
|
|
];
|
2025-07-30 16:25:01 +02:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
2025-08-01 13:18:13 +02:00
|
|
|
|
# fileSystems."/" = {
|
|
|
|
|
|
# device = "/dev/disk/by-uuid/864dfbec-81f0-460f-b970-27693a0ad0e6";
|
|
|
|
|
|
# fsType = "ext4";
|
|
|
|
|
|
# };
|
2025-07-30 16:46:08 +02:00
|
|
|
|
|
2025-08-01 13:18:13 +02:00
|
|
|
|
# fileSystems."/boot" = {
|
|
|
|
|
|
# device = "/dev/disk/by-uuid/E141-F5CE";
|
|
|
|
|
|
# fsType = "vfat";
|
|
|
|
|
|
# options = [
|
|
|
|
|
|
# "fmask=0077"
|
|
|
|
|
|
# "dmask=0077"
|
|
|
|
|
|
# ];
|
|
|
|
|
|
# };
|
2025-07-30 16:46:08 +02:00
|
|
|
|
|
2025-08-01 13:18:13 +02:00
|
|
|
|
# swapDevices = [ ];
|
2025-07-30 16:25:01 +02:00
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
|
}
|