dotfiles.nix/home-manager/sajenim/features/cli/default.nix
2024-08-08 09:02:42 +08:00

27 lines
469 B
Nix

{pkgs, ...}: {
imports = [
./git.nix
./nvim.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 = 22;
};
matchBlocks."lavender" = {
hostname = "lavender.kanto.dev";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
};
}