From daf3efaea651453018303ee1622e7cb271110994 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Sun, 28 Dec 2025 21:39:20 +0000 Subject: [PATCH] fix: parametrize home folder :bug: --- nixos/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/fish.nix b/nixos/fish.nix index 93d098c..786b465 100644 --- a/nixos/fish.nix +++ b/nixos/fish.nix @@ -6,7 +6,7 @@ shellAliases = { cdtmp = "cd $(mktemp -d)"; theme = "bash ~/dotfiles/scripts/theme.sh"; - music = "mpv --no-video --log-file=~/music_history.log \"$(find /mnt/c/Users/DNTH/Music/ -type f \\( -name '*.mp3' -o -name '*.wav' -o -name '*.flac' -o -name '*.m4a' -o -name '*.ogg' \\) | fzf)\""; + music = "mpv --no-video --log-file=~/music_history.log \"$(find $HOME/Music/ -type f \\( -name '*.mp3' -o -name '*.wav' -o -name '*.flac' -o -name '*.m4a' -o -name '*.ogg' \\) | fzf)\""; weather = "curl wttr.in/?T"; # TODO: rename and move 25_flakes into dotfiles nide = "nix develop ~/python-projects/25_flakes/$(basename (pwd)) -c $(which fish)";