mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
feat(steam): mkbeatsaber
This commit is contained in:
parent
46c6fbc8c1
commit
fc11fb8152
18 changed files with 891 additions and 44 deletions
10
nixos/steam/account-switch.nix
Normal file
10
nixos/steam/account-switch.nix
Normal 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
15
nixos/steam/beatsaber.nix
Normal 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" = { };
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue