vintagestory

This commit is contained in:
Ellie 2026-06-12 23:36:24 -07:00
parent 3af1a03d40
commit 19b36c1f0d
6 changed files with 906 additions and 1 deletions

View file

@ -24,6 +24,12 @@
url = "git+https://forgejo.ellie.town/wizzy/dicebot.git";
inputs.nixpkgs.follows = "nixpkgs";
};
# Pinned by rev so automated flake updates don't bump the game server:
# Vintage Story clients must match the server version, so upgrades
# should be deliberate. This rev carries vintagestory 1.22.3, which
# needs unstable's package recipe anyway (.NET 10, new asset layout).
nixpkgs-vintagestory.url = "github:nixos/nixpkgs/173d0ad7a974f8543a9ab01d2271b2e290341b33";
};
outputs =
@ -33,6 +39,7 @@
sops-nix,
continuwuity,
dicebot,
nixpkgs-vintagestory,
...
}:
let
@ -45,7 +52,7 @@
{
nixosConfigurations.home-server = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit continuwuity dicebot; };
specialArgs = { inherit continuwuity dicebot nixpkgs-vintagestory; };
modules = [
disko.nixosModules.disko
@ -72,6 +79,7 @@
./services/forgejo-runner.nix
./services/borgbackup.nix
./services/gotosocial.nix
./services/vintagestory.nix
# ./services/akkoma.nix
];
};