dotfiles.nix/home-manager/sajenim/features/cli/default.nix
2024-07-08 21:28:58 +08:00

28 lines
460 B
Nix

{ pkgs, ... }:
{
imports = [
./git.nix
./zsh.nix
];
home.packages = with pkgs; [
lazygit
];
programs.ssh = {
enable = true;
matchBlocks."viridian" = {
hostname = "viridian.kanto.dev";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 62841;
};
matchBlocks."lavender" = {
hostname = "lavender.kanto.dev";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
};
}