I think I finally figured out the issue with the hardware config

This commit is contained in:
TheWanderingCrow 2024-09-21 14:01:56 -04:00
parent 2839f31d1a
commit 485f9b700c

View file

@ -14,40 +14,14 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "tmpfs";
fsType = "tmpfs";
};
fileSystems."/iso" =
{ device = "/dev/disk/by-uuid/1980-01-01-00-00-00-00";
fsType = "iso9660";
};
fileSystems."/nix/.ro-store" =
{ device = "/iso/nix-store.squashfs";
fsType = "squashfs";
options = [ "loop" ];
};
fileSystems."/nix/.rw-store" =
{ device = "tmpfs";
fsType = "tmpfs";
};
fileSystems."/nix/store" =
{ device = "overlay";
fsType = "overlay";
};
fileSystems."/mnt" =
{ device = "/dev/disk/by-uuid/b8684e4b-b1be-4040-b575-d9a3c116dd23";
fsType = "ext4";
};
fileSystems."/mnt/boot" =
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A189-720A";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];