Hyprland/start/src/helpers/Nix.hpp

9 lines
183 B
C++
Raw Normal View History

#pragma once
#include <expected>
#include <string>
namespace Nix {
std::expected<void, std::string> nixEnvironmentOk();
bool shouldUseNixGL();
};