From 6975b56de2242941f56ce4bd71d4621399acfb46 Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 6 Feb 2025 22:15:21 +0000 Subject: [PATCH] home: fix path collision not sure why this only happens when i build nix-on-droid --- home/profile/base.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/home/profile/base.nix b/home/profile/base.nix index 6023c19..148a127 100644 --- a/home/profile/base.nix +++ b/home/profile/base.nix @@ -108,12 +108,6 @@ in # for icat on all systems kitty.kitten - # terminfo (just the ones i'm likely to use) - kitty.terminfo - alacritty.terminfo - termite.terminfo - tmux.terminfo - # pretty hyfetch neofetch-hyfetch-shim @@ -149,6 +143,12 @@ in zoxide asciinema mtr + ] ++ builtins.map (x: lib.hiPrio x) [ + # terminfo (just the ones i'm likely to use) + kitty.terminfo + alacritty.terminfo + termite.terminfo + tmux.terminfo ]; }; }