dotfiles.nix/home-manager/sajenim/features/cli/default.nix

23 lines
414 B
Nix
Raw Normal View History

2024-09-20 20:24:55 +08:00
{...}: {
2024-01-21 21:01:42 +08:00
imports = [
./git.nix
2024-08-04 22:21:23 +08:00
./nvim.nix
2024-01-21 21:01:42 +08:00
./zsh.nix
];
programs.ssh = {
enable = true;
2024-01-22 19:57:58 +08:00
matchBlocks."viridian" = {
2024-11-22 07:15:34 +08:00
hostname = "viridian.home.arpa";
2024-01-22 19:57:58 +08:00
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
2024-01-22 19:57:58 +08:00
};
2024-07-05 23:03:23 +08:00
matchBlocks."lavender" = {
2024-11-22 07:15:34 +08:00
hostname = "lavender.home.arpa";
2024-07-05 23:03:23 +08:00
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
2024-01-21 21:01:42 +08:00
};
}