dotfiles/user-modules/gaming/launchers/steam.nix

17 lines
228 B
Nix

{
config,
lib,
...
}:
with lib;
{
options.modules.steam = {
enable = mkEnableOption "steam";
};
config = mkIf config.modules.steam.enable {
# Steam must be installed systemwide as of time of writing
};
}