mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
14 lines
219 B
C++
14 lines
219 B
C++
#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 */
|