add appimage-run; update flake.lock; add proton-ge-bin; fix godot

This commit is contained in:
2025-04-16 10:23:41 +01:00
parent 89ceac6561
commit 13a7e9b0db
4 changed files with 42 additions and 31 deletions

View File

@@ -1,8 +1,16 @@
{ pkgs, inputs, ... }:
{
home.packages = [
pkgs.jetbrains.rider
inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".godot-mono
home.packages = with pkgs;[
jetbrains.rider
# Remove when https://github.com/NixOS/nixpkgs/issues/393332 resolved (likely when 25.05 is out)
(symlinkJoin {
name = "godot-mono";
paths = [ inputs.nixpkgs-unstable.legacyPackages."${pkgs.system}".godot-mono ];
buildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/godot4-mono --set DOTNET_SYSTEM_GLOBALIZATION_INVARIANT 1
'';
})
];
}