This commit is contained in:
waveringana 2025-06-17 19:20:41 -04:00
parent f786d3d6b7
commit 440348d1e5
7 changed files with 8 additions and 1 deletions

View file

@ -25,7 +25,7 @@
system.stateVersion = "24.11";
# pin host platform & microcode
# pin host platform & microcorre
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault
config.hardware.enableRedistributableFirmware;
@ -58,6 +58,13 @@
boot.zfs.devNodes = "/dev/disk/by-id";
boot.zfs.forceImportAll = true;
services.nfs.server = {
enable = true;
exports = ''
/storage *(rw,sync,no_subtree_check,no_root_squash)
'';
};
/*boot.kernelParams = [ "ip=dhcp" ];
boot.initrd = {
availableKernelModules = [ "r8169" ];