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

@@ -3,6 +3,19 @@
let
openvsx = inputs.nix-vscode-extensions.extensions.x86_64-linux.open-vsx;
vscode-marketplace = inputs.nix-vscode-extensions.extensions.x86_64-linux.vscode-marketplace;
# resharper-code = pkgs.vscode-utils.buildVscodeMarketplaceExtension {
# mktplcRef = {
# name = "resharper-code";
# version = "0.0.12";
# publisher = "jetbrains";
# };
# vsix = builtins.fetchurl {
# name = "jetbrains.resharper-code.zip";
# url = "https://download.jetbrains.com/product?code=VSCRS&latest&distribution=linuxX64&type=eap";
# sha256 = "sha256:05zmr3r2yid8r5hdh1km7kfl3cwlsf9nnccigyzhs14j5k7q0kjc";
# };
# };
in
{
home.packages = with pkgs;[
@@ -17,7 +30,9 @@ in
profiles.default = {
enableUpdateCheck = false;
enableExtensionUpdateCheck = false;
extensions = (with openvsx;[
extensions = [
# resharper-code # also doesn't work
] ++ (with openvsx;[
biomejs.biome
mkhl.direnv
dracula-theme.theme-dracula
@@ -34,7 +49,7 @@ in
ms-python.python
ms-python.debugpy
charliermarsh.ruff
# jetbrains.resharper-code won't work with nix lmao
# jetbrains.resharper-code # won't work with nix lmao
]) ++ (with vscode-marketplace;[
bradlc.vscode-tailwindcss
]);