26 lines
405 B
Nix
Raw Permalink Normal View History

2025-02-18 17:58:35 -05:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me = {
steam_run_free.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install steam_run_free.";
};
};
config = lib.mkIf config.me.steam_run_free.enable {
environment.systemPackages = with pkgs; [
steam-run-free
];
};
2025-02-18 17:58:35 -05:00
}