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

21 lines
286 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" = {
hostname = "192.168.1.102";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
};
2024-01-21 21:01:42 +08:00
};
}