From 5df2c73f9b786998712d1a366b6487ff2cb22a11 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Tue, 29 Oct 2024 23:39:02 -0700 Subject: [PATCH] fix: use shell alias for fastfetch to avoid quirks --- users/youwen/common/core.nix | 1 + users/youwen/common/fastfetch/default.nix | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/users/youwen/common/core.nix b/users/youwen/common/core.nix index 254e15f..241c203 100755 --- a/users/youwen/common/core.nix +++ b/users/youwen/common/core.nix @@ -101,6 +101,7 @@ in enable = true; shellAliases = { ls = "eza -l --icons=auto"; + neofetch = "${pkgs.fastfetch}/bin/fastfetch"; }; # shellInit = '' # oh-my-posh disable notice diff --git a/users/youwen/common/fastfetch/default.nix b/users/youwen/common/fastfetch/default.nix index e22bf86..1fa86b2 100644 --- a/users/youwen/common/fastfetch/default.nix +++ b/users/youwen/common/fastfetch/default.nix @@ -5,8 +5,4 @@ programs.fastfetch = { enable = true; }; - - home.packages = [ - (pkgs.writeShellScriptBin "neofetch" "${pkgs.fastfetch}/bin/fastfetch") - ]; }