#pragma once #include "installables.hh" namespace nix { struct InstallableValue : Installable { ref state; InstallableValue(ref state) : state(state) {} }; }