mod: add personal nix user repository

switched out all personal flakes, inputs
This commit is contained in:
2026-06-08 21:55:50 -04:00
parent 4acbd22078
commit ad717d64b8
7 changed files with 178 additions and 139 deletions

View File

@@ -1,7 +1,7 @@
{
pkgs,
userName,
vintage-story,
nur,
...
}: {
imports = [
@@ -60,7 +60,7 @@
};
environment.systemPackages = [
vintage-story.packages.${pkgs.system}.default
nur.packages.${pkgs.system}.vintage-story
];
systemd.services.vintagestory-server = {
@@ -71,7 +71,7 @@
Type = "simple";
User = userName;
WorkingDirectory = "/home/${userName}";
ExecStart = "${vintage-story.packages.${pkgs.system}.default}/bin/vintagestory-server";
ExecStart = "${nur.packages.${pkgs.system}.vintage-story}/bin/vintagestory-server";
Restart = "on-failure";
RestartSec = "5s";
};