diff options
| author | Christian <[email protected]> | 2026-05-15 23:03:10 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-05-15 23:03:10 -0500 |
| commit | f8f120ef064010fb3d178ffa1924b1c87e7f803f (patch) | |
| tree | 7fc1368c0315c6da7b626fd89e6aa5478f6e0608 /modules | |
| parent | 123f93c32d387277388b957a26307e5b26d99514 (diff) | |
Add SSH host config for myserver
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/christian.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix index b3e6b77..381f1bc 100644 --- a/modules/home/christian.nix +++ b/modules/home/christian.nix @@ -29,6 +29,15 @@ programs.bash.enable = true; + programs.ssh = { + enable = true; + matchBlocks = { + "myserver" = { + hostname = "192.168.0.111"; + }; + }; + }; + programs.git = { enable = true; settings.user.name = "Christian"; |
