flake/users/guanranwang/home-manager/profiles/command-line/resources/fancy-stuff/default.nix
2023-11-15 20:55:27 +08:00

14 lines
203 B
Nix

{pkgs, ...}: {
home.shellAliases = {
"yd" = "ydict -c";
};
home.packages = with pkgs; [
### Fancy stuff
fastfetch
freshfetch
ydict
yt-dlp
aria2
android-tools
];
}