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

27 lines
469 B
Nix
Raw Permalink Normal View History

2024-08-08 09:02:42 +08:00
{pkgs, ...}: {
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
];
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
};
}