Files
nixos-dotfiles/hosts/nixserve/home.nix
T
2026-08-09 10:27:06 +02:00

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
];
}