sb10q
How do I fix / install/ setup the nix manager appropriately? I have followed the instructions to the best of my know know. I am currently overwhelmed with the number of directories artiq/nix requires.
Currently running like this
`
~ cd/ARTIQ/Nix_Working_Dir Nix Develop --------- startup the artiq environment/shell
gnome-terminal --tab --------- add new tab (2) while staying in the shell
~ cd/ARTIQ/artiq-master ---------go to new tab to dir for artiq master
gnome-terminal --tab ---------add new tab (3) while staying in the shell
gnome-terminal --tab ---------add new tab (4) while staying in the shell
artiq_master ---------startup artiq master in tab 2
artiq_ctlmgr --------- startup artiq_ctlmgr in tab 3
artiq_dashboard ---------startup artiq_dashboard in tab 4
gnome-terminal --tab --------- add new tab (5) while staying in the shell
~ cd/ARTIQ/stabilizer --------- go do stabilizer stuff
`

Other issues include - not sure where the dax files are being installed or why the artiq master is not seeing them? I think they should be installed per the flake.
Similiarly, modifying the flake to include py.pyvisa is very confusing. For example:
`
import pyvisa
a = pyvisa.ResourceManager()
ValueError Traceback (most recent call last)
Cell In[11], line 1
----> 1 a = pyvisa.ResourceManager()
File /nix/store/g2nglci3s4yyxvfyw08al5ivwzdy2mb8-python3-3.12.9-env/lib/python3.12/site-packages/pyvisa/highlevel.py:2992, in ResourceManager.new(cls, visa_library)
2982 """Create a new resource manager tied to the specified VISA library.
2983
2984 Parameters
(...)
2989
2990 """
2991 if not isinstance(visa_library, VisaLibraryBase):
-> 2992 visa_library = open_visa_library(visa_library)
2994 if visa_library.resource_manager is not None:
2995 obj = visa_library.resource_manager
File /nix/store/g2nglci3s4yyxvfyw08al5ivwzdy2mb8-python3-3.12.9-env/lib/python3.12/site-packages/pyvisa/highlevel.py:2899, in open_visa_library(specification)
2897 wrapper = "ivi"
2898 else:
-> 2899 wrapper = _get_default_wrapper()
2901 cls = get_wrapper_class(wrapper)
2903 try:
File /nix/store/g2nglci3s4yyxvfyw08al5ivwzdy2mb8-python3-3.12.9-env/lib/python3.12/site-packages/pyvisa/highlevel.py:2858, in _get_default_wrapper()
2856 except ValueError:
2857 logger.debug("Did not find pyvisa-py package")
-> 2858 raise ValueError(
2859 "Could not locate a VISA implementation. Install either the IVI binary or pyvisa-py."
2860 )
ValueError: Could not locate a VISA implementation. Install either the IVI binary or pyvisa-py.
`
The error is not on the import it is on calling the resource manager.