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

28 lines
457 B
Nix

{ pkgs, ... }:
{
imports = [
./git.nix
./zsh.nix
];
home.packages = with pkgs; [
lazygit
];
programs.ssh = {
enable = true;
matchBlocks."viridian" = {
hostname = "viridian.kanto.dev";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
matchBlocks."lavender" = {
hostname = "lavender.kanto.dev";
identityFile = "/home/sajenim/.ssh/sajenim_sk";
port = 22;
};
};
}