flake/users/guanranwang/home-manager/applications/ydict/default.nix
2023-11-30 02:48:13 +08:00

6 lines
101 B
Nix

{pkgs, ...}: {
home.packages = [pkgs.ydict];
home.shellAliases = {
"yd" = "ydict -c";
};
}