2024-08-22 00:50:54 -04: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-24 20:09:35 +01:00
|
|
|
|
{
|
2024-03-03 18:06:28 -05:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
2024-08-22 00:50:54 -04:00
|
|
|
|
pkgs,
|
2024-03-03 18:06:28 -05:00
|
|
|
|
modulesPath,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2024-08-22 00:50:54 -04:00
|
|
|
|
|
2024-03-03 18:06:28 -05:00
|
|
|
|
{
|
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2023-12-24 20:09:35 +01:00
|
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
|
boot = {
|
2024-08-22 00:50:54 -04:00
|
|
|
|
initrd.availableKernelModules = [
|
|
|
|
|
"xhci_pci"
|
|
|
|
|
"mpt3sas"
|
|
|
|
|
"ahci"
|
|
|
|
|
"nvme"
|
|
|
|
|
"usb_storage"
|
|
|
|
|
"usbhid"
|
|
|
|
|
"sd_mod"
|
|
|
|
|
];
|
|
|
|
|
initrd.kernelModules = [ "dm-snapshot" ];
|
2024-02-05 22:45:43 +01:00
|
|
|
|
kernelModules = [ "kvm-amd" ];
|
|
|
|
|
extraModulePackages = [ ];
|
|
|
|
|
};
|
2023-12-25 12:40:59 -05:00
|
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
|
fileSystems = {
|
2024-08-22 00:50:54 -04:00
|
|
|
|
"/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/8bfaa32b-09dd-45c8-831e-05e80be82f9e";
|
2024-02-05 22:45:43 +01:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2023-12-25 12:40:59 -05:00
|
|
|
|
|
2024-08-22 00:50:54 -04:00
|
|
|
|
"/home" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/4f1e4cc5-b0e1-402c-895c-b28368905ccc";
|
|
|
|
|
fsType = "ext4";
|
2024-02-05 22:45:43 +01:00
|
|
|
|
};
|
2024-08-22 00:50:54 -04:00
|
|
|
|
|
2024-04-29 15:42:44 -04:00
|
|
|
|
"/nix" = {
|
|
|
|
|
device = "ZFS-primary/nix";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2024-08-22 00:50:54 -04:00
|
|
|
|
|
|
|
|
|
"/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/F774-5A2D";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
|
};
|
2024-08-22 00:50:54 -04:00
|
|
|
|
swapDevices = [ { device = "/dev/disk/by-uuid/96f3107b-db94-47b3-963e-6a2cb8b4e66a"; } ];
|
|
|
|
|
|
|
|
|
|
# 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.eno1.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.eno2.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp72s0f3u1u2c2.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2023-12-25 12:40:59 -05:00
|
|
|
|
}
|