56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
# 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,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
"nvme"
|
|
"xhci_pci"
|
|
"usbhid"
|
|
"sd_mod"
|
|
];
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.initrd.luks.devices.root = {
|
|
device = "/dev/disk/by-uuid/8020f549-aeed-464f-b406-bce90cb0f43b";
|
|
};
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/710cae74-78fc-4b62-b365-0155a378c948";
|
|
fsType = "btrfs";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/5EC1-473C";
|
|
fsType = "vfat";
|
|
options = [
|
|
"fmask=0077"
|
|
"dmask=0077"
|
|
];
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
hardware.cpu.intel.updateMicrocode =
|
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|