2023-07-25 13:25:23 -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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
|
|
|
|
|
boot.initrd.kernelModules = [
|
|
|
|
|
"dm-snapshot"
|
|
|
|
|
"dm_cache_smq"
|
|
|
|
|
"dm_cache"
|
|
|
|
|
"dm_persistent_data"
|
|
|
|
|
"dm_bio_prison"
|
|
|
|
|
"dm_bufio"
|
|
|
|
|
"dm_raid"
|
|
|
|
|
"dm_mod"
|
|
|
|
|
];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
2024-01-16 11:22:24 -05:00
|
|
|
|
boot.swraid.enable = true;
|
2023-07-25 13:25:23 -04:00
|
|
|
|
|
|
|
|
|
# Cache and Thin Provisioning Support
|
|
|
|
|
services.lvm.boot.thin.enable = true;
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/4aa8d42a-e8c3-4b60-bc69-2d0333886c55";
|
|
|
|
|
fsType = "xfs";
|
2023-07-27 14:53:50 -04:00
|
|
|
|
options = [ "defaults" "pquota" ];
|
2023-07-25 13:25:23 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/BF96-6765";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/storage" =
|
|
|
|
|
{ device = "/dev/disk/by-uuid/eb2170c8-236a-40d4-baa8-07ad4981a442";
|
|
|
|
|
fsType = "xfs";
|
2023-07-27 14:53:50 -04:00
|
|
|
|
options = [ "defaults" "pquota" ];
|
2023-07-25 13:25:23 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
# 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`.
|
2024-07-29 16:18:08 -04:00
|
|
|
|
# networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
|
|
|
|
# Used to talk with the SpiNNaker
|
|
|
|
|
networking.interfaces.eno2 = {
|
|
|
|
|
ipv4.routes = [{
|
|
|
|
|
address = "192.168.240.0";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
via = "192.168.240.254";
|
|
|
|
|
}];
|
|
|
|
|
ipv4.addresses = [{
|
|
|
|
|
address = "192.168.240.254";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
}];
|
|
|
|
|
useDHCP = lib.mkDefault false;
|
|
|
|
|
};
|
2023-07-25 13:25:23 -04:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|