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

29 lines
474 B
Nix
Raw Normal View History

2024-01-21 21:01:42 +08:00
{ pkgs, ... }:
{
imports = [
./git.nix
2024-08-04 22:21:23 +08:00
# ./nvim.nix
2024-01-21 21:01:42 +08:00
./zsh.nix
];
home.packages = with pkgs; [
lazygit
];
programs.ssh = {
enable = true;
2024-01-22 19:57:58 +08:00
matchBlocks."viridian" = {
2024-07-08 21:28:58 +08:00
hostname = "viridian.kanto.dev";
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-07-08 21:28:58 +08:00
hostname = "lavender.kanto.dev";
2024-07-05 23:03:23 +08:00
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
2024-01-21 21:01:42 +08:00
};
}