diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 18:58:59 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-18 18:58:59 +0200 |
| commit | ebb67feeb46226dff0d384c7800dab4e42a03912 (patch) | |
| tree | d3e91ce8dace5770792f4633b31ecea93988bc5c /common/home/programs/ssh | |
| parent | 04e96de97689d1b78437df4173ece9857d9c6a61 (diff) | |
refactor home
Diffstat (limited to 'common/home/programs/ssh')
| -rw-r--r-- | common/home/programs/ssh/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/home/programs/ssh/default.nix b/common/home/programs/ssh/default.nix new file mode 100644 index 0000000..da761d5 --- /dev/null +++ b/common/home/programs/ssh/default.nix @@ -0,0 +1,5 @@ +{ home, ... }: +{ + enable = true; + includes = [ "${home.homeDirectory}/global/.ssh/config" ]; +} |