feat: lmstudio

This commit is contained in:
2025-08-23 23:03:22 +09:00
parent cfebabe42e
commit 2c6979ea3f
4 changed files with 17 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.kernelParams = [ "modprobe.blacklist=dvb_usb_rtl28xxu" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
@@ -26,6 +27,12 @@
options = [ "fmask=0077" "dmask=0077" ];
};
fileSystems."/mnt/share" =
{ device = "/dev/disk/by-uuid/0D608CA53E06CE7A";
fsType = "ntfs-3g";
options = [ "rw" "uid=1000" "gid=100" "umask=022" ];
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
@@ -35,6 +42,8 @@
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
services.udev.packages = [ pkgs.rtl-sdr ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}