Ditch podman and deploy a new version of the website #58

Manually merged
tlater merged 13 commits from tlater/new-website into master 2022-10-14 06:16:48 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 78ecfd63a1 - Show all commits

View file

@ -35,7 +35,7 @@
}; };
nixpkgs.config.allowUnfreePredicate = pkg: nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) ["steam-runtime" "steamcmd"]; builtins.elem (lib.getName pkg) ["steam-original" "steam-runtime" "steamcmd"];
# Optimization for minecraft servers, see: # Optimization for minecraft servers, see:
# https://bugs.mojang.com/browse/MC-183518 # https://bugs.mojang.com/browse/MC-183518

View file

@ -1,5 +1,5 @@
{pkgs, ...}: let {pkgs, ...}: let
inherit (pkgs.lib) callPackage; inherit (pkgs) callPackage;
in { in {
starbound = callPackage ./starbound {}; starbound = callPackage ./starbound {};
} }