From 4e89837f4e475db75b1cd54cefb0fc2ce4be6f52 Mon Sep 17 00:00:00 2001 From: A Frederick Christensen Date: Sun, 12 Jan 2025 16:54:43 -0600 Subject: [PATCH] alacritty-theme: don't litter / Moves the output files from $out/ to $out/share/alacritty-theme/ Without this, ~/.nix-profile/ is filled with alacritty-theme files when using alacritty-theme from home-manager. --- pkgs/by-name/al/alacritty-theme/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/al/alacritty-theme/package.nix b/pkgs/by-name/al/alacritty-theme/package.nix index a5e7d6f44c0c..27a953458bf0 100644 --- a/pkgs/by-name/al/alacritty-theme/package.nix +++ b/pkgs/by-name/al/alacritty-theme/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation (self: { sourceRoot = "${self.src.name}/themes"; installPhase = '' runHook preInstall - install -Dt $out *.toml + install -Dt $out/share/alacritty-theme *.toml runHook postInstall '';