feat(steam): mkbeatsaber

This commit is contained in:
arcnmx 2024-02-13 17:02:53 -08:00
parent 46c6fbc8c1
commit fc11fb8152
18 changed files with 891 additions and 44 deletions

View file

@ -0,0 +1,10 @@
{
lib,
...
}: let
inherit (lib.modules) mkDefault;
in {
services.steam.accountSwitch = {
enable = mkDefault true;
};
}

15
nixos/steam/beatsaber.nix Normal file
View file

@ -0,0 +1,15 @@
{
lib,
...
}: let
inherit (lib.modules) mkDefault;
in {
services.steam.beatsaber = {
enable = mkDefault true;
defaultVersion = mkDefault "1.29.0";
versions = {
"1.29.0" = { };
"1.34.2" = { };
};
};
}