2024-07-19 12:00:55 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-18 11:48:49 +00:00
|
|
|
|
2024-07-19 12:00:55 +00:00
|
|
|
with lib;
|
|
|
|
{
|
2024-07-18 11:48:49 +00:00
|
|
|
options.modules.steam = {
|
|
|
|
enable = mkEnableOption "steam";
|
|
|
|
};
|
2025-01-26 12:16:06 +00:00
|
|
|
|
2025-02-16 17:15:44 +00:00
|
|
|
config = mkIf config.modules.steam.enable {
|
2025-02-17 11:53:45 +00:00
|
|
|
# Steam must be installed systemwide as of time of writing
|
2025-02-16 17:15:44 +00:00
|
|
|
};
|
2025-01-23 23:28:22 +00:00
|
|
|
}
|