9 lines
183 B
C++
9 lines
183 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <expected>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace Nix {
|
||
|
|
std::expected<void, std::string> nixEnvironmentOk();
|
||
|
|
bool shouldUseNixGL();
|
||
|
|
};
|