add pipewire auto gain control block; update to 25.05; add wireshark gui; ryubing->stable; nerd-fonts new packaging; godot-mono->stable; update vscode

This commit is contained in:
2025-05-22 15:18:30 +01:00
parent 64eae63335
commit 95608f2bfa
8 changed files with 123 additions and 91 deletions

View File

@@ -1,17 +1,17 @@
{ pkgs, inputs, ... }:
{ pkgs, ... }:
{
home.packages = with pkgs;[
jetbrains.rider
# Remove when https://github.com/NixOS/nixpkgs/issues/393332 resolved (likely when 25.05 is out)
# godot-mono
(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
'';
})
godot-mono
# (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
# '';
# })
];
}