add mkvtoolnix; remove kodi; move mangohud to gaming; playing with vscode resharper-code;

This commit is contained in:
2025-10-21 11:33:52 +01:00
parent 86abbf360e
commit bfc2435b43
5 changed files with 66 additions and 79 deletions

View File

@@ -26,32 +26,35 @@ let
umu-run "$@"
'';
});
# proton with ja_JP
umu-ja = (pkgs.writeShellApplication {
name = "umu-ja";
runtimeInputs = [ umu-wrapped ];
text = "LANG=ja_JP.utf8 umu-run \"$@\"";
});
# wine with ja_JP
wine-ja = (pkgs.writeShellApplication {
name = "wine-ja";
runtimeInputs = [ wine-wrapped ];
text = "LANG=ja_JP.utf8 wine \"$@\"";
});
in
{
home.packages = with pkgs;[
# Wine / Proton
umu-wrapped
umu-ja
wine-wrapped
wine-ja
pkgs_unstable.winetricks
# proton with ja_JP
(pkgs.writeShellApplication {
name = "umu-ja";
runtimeInputs = [ umu-wrapped ];
text = "LANG=ja_JP.utf8 umu-run \"$@\"";
})
# wine with ja_JP
(pkgs.writeShellApplication {
name = "wine-ja";
runtimeInputs = [ wine-wrapped ];
text = "LANG=ja_JP.utf8 wine \"$@\"";
})
bottles
(heroic.override {
extraPkgs = pkgs: [
pkgs.umu-launcher
pkgs.gamescope
pkgs.mangohud
];
})
@@ -65,4 +68,13 @@ in
# Cheat engine
scanmem
];
programs = {
mangohud = {
enable = true;
settings = {
preset = 1;
};
};
};
}