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

28 lines
448 B
Nix
Raw Normal View History

2024-01-21 21:01:42 +08:00
{ pkgs, ... }:
{
imports = [
./git.nix
./zsh.nix
];
home.packages = with pkgs; [
lazygit
];
programs.ssh = {
enable = true;
2024-01-22 19:57:58 +08:00
matchBlocks."viridian" = {
2024-07-08 10:41:39 +08:00
hostname = "192.168.20.4";
2024-01-22 19:57:58 +08:00
identityFile = "/home/sajenim/.ssh/sajenim_sk";
2024-06-06 20:34:19 +08:00
port = 62841;
2024-01-22 19:57:58 +08:00
};
2024-07-05 23:03:23 +08:00
matchBlocks."lavender" = {
2024-07-08 10:41:39 +08:00
hostname = "192.168.20.3";
2024-07-05 23:03:23 +08:00
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
2024-01-21 21:01:42 +08:00
};
}