diff options
Diffstat (limited to 'src/nix-env/profiles.hh')
-rw-r--r-- | src/nix-env/profiles.hh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/nix-env/profiles.hh b/src/nix-env/profiles.hh new file mode 100644 index 000000000000..3d3c86e50b1a --- /dev/null +++ b/src/nix-env/profiles.hh @@ -0,0 +1,14 @@ +#ifndef __PROFILES_H +#define __PROFILES_H + +#include <string> + +#include "util.hh" + + +Path createGeneration(Path profile, Path outPath, Path drvPath); + +void switchLink(Path link, Path target); + + +#endif /* !__PROFILES_H */ |