13 lines
225 B
Nix
13 lines
225 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
imports = [ ../../modules/home-common.nix ];
|
|
|
|
programs.zsh.shellAliases = {
|
|
transfer = "transmission-remote localhost:9091";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
weechat # irc client
|
|
];
|
|
}
|