2022-04-27 11:23:11 -05: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.
|
2024-10-19 01:19:59 -05:00
|
|
|
|
{
|
|
|
|
|
|
config,
|
|
|
|
|
|
lib,
|
|
|
|
|
|
modulesPath,
|
|
|
|
|
|
...
|
|
|
|
|
|
}:
|
2022-04-27 11:23:11 -05:00
|
|
|
|
|
|
|
|
|
|
{
|
2024-10-19 01:19:59 -05:00
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2022-04-27 11:23:11 -05:00
|
|
|
|
|
2024-10-19 01:19:59 -05:00
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
|
|
"nvme"
|
|
|
|
|
|
"xhci_pci"
|
|
|
|
|
|
"ahci"
|
|
|
|
|
|
"usbhid"
|
|
|
|
|
|
"usb_storage"
|
|
|
|
|
|
"sd_mod"
|
|
|
|
|
|
];
|
2022-04-27 11:23:11 -05:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2025-11-03 08:33:37 -06:00
|
|
|
|
boot.kernelModules = [
|
|
|
|
|
|
#"kvm-amd"
|
|
|
|
|
|
];
|
2022-04-27 11:23:11 -05:00
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
2025-05-14 21:19:49 -05:00
|
|
|
|
fileSystems = {
|
|
|
|
|
|
"/" = {
|
|
|
|
|
|
#device = "/dev/disk/by-uuid/27ae91ed-32e9-411e-8227-0d99e360fbbf";
|
|
|
|
|
|
device = "/dev/nvme0n1p4";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
};
|
|
|
|
|
|
"/boot" = {
|
|
|
|
|
|
device = "/dev/nvme0n1p1";
|
|
|
|
|
|
fsType = "auto";
|
|
|
|
|
|
};
|
2025-12-15 21:51:27 -06:00
|
|
|
|
"/mnt/tmp" = {
|
|
|
|
|
|
device = "/dev/disk/by-uuid/f456aeb0-a11a-4b84-86ae-402eff6d98bb";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
};
|
2024-10-19 01:19:59 -05:00
|
|
|
|
};
|
2022-04-27 11:23:11 -05:00
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
|
}
|