copy bitwig.jar to install location and updated .gitignore

This commit is contained in:
2026-04-17 04:43:59 +02:00
parent 1649160981
commit 2ea4490891
3 changed files with 8 additions and 19 deletions
+7 -1
View File
@@ -1,4 +1,6 @@
{pkgs, ...}: {
{pkgs, ...}: let
customJar = /etc/nixos/home/packages/media/bitwig.jar;
in {
users.users.someone.packages = with pkgs; [
(bitwig-studio6.overrideAttrs (old: {
version = "6.0";
@@ -7,6 +9,10 @@
url = "https://www.bitwig.com/dl/Bitwig%20Studio/6.0/installer_linux";
hash = "sha256-jrCTgaxfeWhfKwLeKLmqTQWS7RVbVnHqJ0InCipmm8k=";
};
postInstall = ''
cp ${customJar} $out/libexec/bin/bitwig.jar
'';
}))
];
}