diff --git a/modules/home/users/crumb/tf2.nix b/modules/home/users/crumb/tf2.nix index 8891202..ed98de7 100644 --- a/modules/home/users/crumb/tf2.nix +++ b/modules/home/users/crumb/tf2.nix @@ -12,9 +12,10 @@ in { (let tf2pkgs = inputs.tf2-nix.packages.x86_64-linux; tgz = x: pkgs.runCommand "source" {} '' - mkdir $out - cd $out - tar xzvf "${x}" + tarball="${x}" + tar xzf "$tarball" + base="$(stripHash "$tarball")" + mv "''${base%.tar.gz}" $out ''; my-config = tf2pkgs.mergeTf2Configs (with tf2pkgs; [ mastercomfig.presets.medium-low diff --git a/modules/home/users/crumb/tf2/improved-crosshairs-0.1.1.tar.gz b/modules/home/users/crumb/tf2/improved-crosshairs-0.1.1.tar.gz index 2d9feec..1a55cf7 100644 Binary files a/modules/home/users/crumb/tf2/improved-crosshairs-0.1.1.tar.gz and b/modules/home/users/crumb/tf2/improved-crosshairs-0.1.1.tar.gz differ