From 2d6609f058e2bd2c79ceb7cb13dda48c3e61e66d Mon Sep 17 00:00:00 2001 From: KP64 Date: Tue, 17 Dec 2024 12:56:42 +0100 Subject: [PATCH] chore: use stable ani-cli --- programs/cli/default.nix | 56 +++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/programs/cli/default.nix b/programs/cli/default.nix index b66360f..dc24a87 100644 --- a/programs/cli/default.nix +++ b/programs/cli/default.nix @@ -2,6 +2,7 @@ lib, config, pkgs, + stable-pkgs, username, ... }: @@ -34,33 +35,34 @@ options.cli.defaults.enable = lib.mkEnableOption "Default Cli Apps"; config = lib.mkIf config.cli.defaults.enable { - home-manager.users.${username}.home.packages = with pkgs; [ - # ani-cli - asciinema - binsider - dipc - dust - glow - gping - grex - hexyl - hurl - hyperfine - jnv - just - kondo - lychee - ouch - procs - rustscan - sd - sshx - tokei - typst - xh + home-manager.users.${username}.home.packages = + [ stable-pkgs.ani-cli ] + ++ (with pkgs; [ + asciinema + binsider + dipc + dust + glow + gping + grex + hexyl + hurl + hyperfine + jnv + just + kondo + lychee + ouch + procs + rustscan + sd + sshx + tokei + typst + xh - sherlock - maigret - ]; + sherlock + maigret + ]); }; }