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