update lots

This commit is contained in:
2026-06-26 17:50:41 +02:00
parent bed947d4d9
commit edaa68912d
7 changed files with 347 additions and 215 deletions
+18 -9
View File
@@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "uas" "sd_mod" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
@@ -24,15 +24,24 @@
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices = [ ];
fileSystems."/media/music" =
{ device = "192.168.132.149:/media/music";
fsType = "nfs4";
};
# 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.enp34s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp3s0f0u2.useDHCP = lib.mkDefault true;
fileSystems."/mnt" =
{ device = "/dev/disk/by-uuid/8873d98f-c461-4d34-8867-f4ebd5c205d2";
fsType = "ext4";
};
fileSystems."/media/gamedisk4" =
{ device = "/dev/disk/by-uuid/D290EB87C8A1E82A";
fsType = "ntfs3";
};
swapDevices =
[ { device = "/dev/disk/by-uuid/5949c73f-30eb-4956-9e93-70301c88fad8"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;