diff --git a/hosts/modules/programs.nix b/hosts/modules/programs.nix index 2fa4a63..c544436 100644 --- a/hosts/modules/programs.nix +++ b/hosts/modules/programs.nix @@ -17,7 +17,6 @@ helix ### System Utilities ### btop - fastfetch nixos-firewall-tool sysz tmux @@ -25,7 +24,7 @@ ]; shellAliases = { ls = "${pkgs.eza}/bin/eza --icons --group-directories-first"; - neofetch = "fastfetch"; + neofetch = "${pkgs.fastfetch}/bin/fastfetch"; tree = "ls --tree"; syscleanup = "sudo nix-collect-garbage -d; sudo /run/current-system/bin/switch-to-configuration boot"; }; diff --git a/users/modules/programs.nix b/users/modules/programs.nix index 0ee976a..bb5b2aa 100644 --- a/users/modules/programs.nix +++ b/users/modules/programs.nix @@ -64,15 +64,6 @@ sha256 = "sha256-A8ydBX4LORk+nutjHurqNNWFmW6LIiBPQcxS3x4nbeQ="; }; } - { - name = "z"; - src = pkgs.fetchFromGitHub { - owner = "jethrokuan"; - repo = "z"; - rev = "85f863f20f24faf675827fb00f3a4e15c7838d76"; - sha256 = "sha256-+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0="; - }; - } { name = "sponge"; src = pkgs.fetchFromGitHub { @@ -82,6 +73,15 @@ sha256 = "sha256-MdcZUDRtNJdiyo2l9o5ma7nAX84xEJbGFhAVhK+Zm1w="; }; } + { + name = "z"; + src = pkgs.fetchFromGitHub { + owner = "jethrokuan"; + repo = "z"; + rev = "85f863f20f24faf675827fb00f3a4e15c7838d76"; + sha256 = "sha256-+FUBM7CodtZrYKqU542fQD+ZDGrd2438trKM0tIESs0="; + }; + } ]; }; };