Skip to content

Commit

Permalink
chore: use stable ani-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
KP64 committed Dec 17, 2024
1 parent 9ff6f76 commit 2d6609f
Showing 1 changed file with 29 additions and 27 deletions.
56 changes: 29 additions & 27 deletions programs/cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
config,
pkgs,
stable-pkgs,
username,
...
}:
Expand Down Expand Up @@ -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
]);
};
}

0 comments on commit 2d6609f

Please sign in to comment.