My experience with nixos-facter and disko have been great so far. Because of docs , I dont know how to access those information in the facter.json. I want to extract information from the facter.json (/dev/disk/by-id, system) to use in my nix-config. For example:
Current:
```nix
hardware.facter.reportPath = ../hardware/facter.json;
disko.devices = {
disk.main = {
type = “disk”;
device = “/dev/disk/by-id/XXXXX”;
content = {
type = “gpt”;
partitions = {
…….
};
};
};
};
```
After:
```nix
hardware.facter.reportPath = ../hardware/facter.json;
disko.devices = {
disk.main = {
type = “disk”;
device = hardware.facter.show.disk.unix_device_names;
content = {
type = “gpt”;
partitions = {
…….
};
};
};
};
```
Can I access those content with facter? If not, will it be a new feature?