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