2026-06-09 17:53:57 +01: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.
|
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
2026-06-04 15:22:07 +01:00
|
|
|
|
|
|
|
|
|
|
{
|
2026-06-09 17:53:57 +01:00
|
|
|
|
imports =
|
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
|
];
|
2026-06-04 15:22:07 +01:00
|
|
|
|
|
2026-06-09 17:53:57 +01:00
|
|
|
|
boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ata_piix" "ahci" "firewire_ohci" "usb_storage" "usbhid" "sd_mod" ];
|
|
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
2026-06-04 15:22:07 +01:00
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
2026-06-09 17:53:57 +01:00
|
|
|
|
fileSystems."/" =
|
|
|
|
|
|
{ device = "/dev/mapper/MacPro-Root";
|
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
|
};
|
2026-06-04 15:22:07 +01:00
|
|
|
|
|
2026-06-09 17:53:57 +01:00
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
|
{ device = "/dev/disk/by-uuid/0E9C-C099";
|
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
|
|
|
|
};
|
2026-06-04 15:22:07 +01:00
|
|
|
|
|
2026-06-09 17:53:57 +01:00
|
|
|
|
swapDevices =
|
|
|
|
|
|
[ { device = "/dev/disk/by-uuid/dec138b4-320f-4b69-acbc-3014a1032cbd"; }
|
|
|
|
|
|
];
|
2026-06-04 15:22:07 +01:00
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
|
}
|