Desktop: configure ssh client

This commit is contained in:
Toast 2024-03-13 11:42:12 +01:00
parent 81bb301ee2
commit 8f84c12306
2 changed files with 10 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./jamesdsp.nix
./vscode.nix
./git.nix
./ssh.nix
];
}

View file

@ -0,0 +1,9 @@
{ ... }:
{
home-manager.users.toast = {
programs.ssh = {
enable = true;
};
};
}