Hey,
I’m trying to build a systemd service that calls lvcreate to create a lvm snapshot.
I thought I would do something like
ExecStart="${pkgs.lvm2}/bin/lvm lvcreate..."
but the lvm bin doesn’t reside in the lvm2 package. Looking into my nix-store, lvm seems to reside in something like ‘lvm2-2.03.23-bin’, but there is no “lvm2-bin” pkg. How do i reference this nix-store path in my nix-config?
Thanks