Updated ai config to use 1080ti with ollama

This commit is contained in:
Random936
2026-02-13 15:14:06 -05:00
parent 32dcd80519
commit b062663705
2 changed files with 36 additions and 10 deletions

View File

@@ -13,16 +13,16 @@
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b98eb7bb-f58c-4862-a234-1d72c9ff1187";
fsType = "ext4";
};
fileSystems."/" = {
device = "/dev/disk/by-partlabel/root";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/3D03-9579";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-partlabel/EFI";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];