From f475232dd43c5a6b6c81cd15a0944c5da9567fa0 Mon Sep 17 00:00:00 2001 From: Ethan Simmons Date: Sat, 4 Oct 2025 18:22:24 -0500 Subject: [PATCH] Add Vintage Story to games --- flake.nix | 1 + modules/nix/games.nix | 1 + modules/options/games.nix | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index b34746b..924ffa6 100644 --- a/flake.nix +++ b/flake.nix @@ -122,6 +122,7 @@ enable = true; lutris.enable = true; minecraft.enable = true; + vintagestory.enable = true; }; common.nil.enable = true; diff --git a/modules/nix/games.nix b/modules/nix/games.nix index 70ecf2d..006ee5d 100644 --- a/modules/nix/games.nix +++ b/modules/nix/games.nix @@ -14,6 +14,7 @@ in ++ optional cfg.gamescope.enable gamescope ++ optional cfg.discord.enable vesktop ++ optional cfg.minecraft.enable prismlauncher + ++ optional cfg.vintagestory.enable vintagestory ++ optional cfg.ps4.enable localPackages.x86_64-linux.shadps4 ++ optionals cfg.lutris.enable [ lutris wine ]; diff --git a/modules/options/games.nix b/modules/options/games.nix index ebc78af..4586b03 100644 --- a/modules/options/games.nix +++ b/modules/options/games.nix @@ -34,6 +34,12 @@ in default = true; }; + vintagestory.enable = mkOption { + description = "Whether to install Vintage Story"; + type = types.bool; + default = false; + }; + minecraft.enable = mkOption { description = "Whether to install minecraft launcher"; type = types.bool;