35 lines
768 B
Nix
35 lines
768 B
Nix
{ config, lib, modulesPath, ... }:
|
|
{
|
|
imports = [ (modulesPath + "/profiles/all-hardware.nix") ];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [
|
|
"nvme"
|
|
"xhci_pci"
|
|
"ahci"
|
|
"usbhid"
|
|
"uas"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
];
|
|
kernelModules = [
|
|
"dm-snapshot"
|
|
];
|
|
};
|
|
};
|
|
|
|
fileSystems = {
|
|
# Remote
|
|
"/home/jimbo/JimboNFS" = {
|
|
device = "10.100.0.1:/export/JimboNFS";
|
|
fsType = "nfs4";
|
|
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
|
|
};
|
|
};
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|