Update hardware configuration

This commit is contained in:
TheWanderingCrow 2024-09-15 01:17:20 +00:00
parent f847039621
commit c8469703a2

View file

@ -21,12 +21,6 @@
fsType = "iso9660"; fsType = "iso9660";
}; };
fileSystems."/nix/.ro-store" =
{ device = "/iso/nix-store.squashfs";
fsType = "squashfs";
options = [ "loop" ];
};
fileSystems."/nix/.rw-store" = fileSystems."/nix/.rw-store" =
{ device = "tmpfs"; { device = "tmpfs";
fsType = "tmpfs"; fsType = "tmpfs";
@ -37,11 +31,29 @@
fsType = "overlay"; fsType = "overlay";
}; };
fileSystems."/nix/store" =
{ device = "/nix/store";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/mnt" = fileSystems."/mnt" =
{ device = "/dev/disk/by-uuid/cc7fc1f5-77b0-4fd6-89c2-dde99d6247ca"; { device = "/dev/disk/by-uuid/cc7fc1f5-77b0-4fd6-89c2-dde99d6247ca";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/mnt/boot" =
{ device = "/dev/disk/by-uuid/73DE-6834";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/nix/.ro-store" =
{ device = "/iso/nix-store.squashfs";
fsType = "squashfs";
options = [ "loop" ];
};
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking