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