Compare commits

..

No commits in common. "4e8fb63d815ef4edd46b99cbef9cc0fc6b7ad112" and "ed13a0fbbf8dd7cee0d55ac09317709fbfcacb5e" have entirely different histories.

3 changed files with 1 additions and 3 deletions

View file

@ -76,7 +76,6 @@
programs.ssh = { programs.ssh = {
enable = true; enable = true;
package = pkgs.openssh;
# ssh host config # ssh host config
matchBlocks = (import "${inputs.mysecrets}/ssh_hosts.nix").privateHosts; matchBlocks = (import "${inputs.mysecrets}/ssh_hosts.nix").privateHosts;
}; };

View file

@ -10,7 +10,7 @@
# reset pre-defined variables that are read and manipulated throughout this function # reset pre-defined variables that are read and manipulated throughout this function
unset JUMPHOST unset JUMPHOST
# arrays are bash or zsh specific # arrays are bash or zsh specific
RSYNC_OPTS=("-rlptzv" "--progress" "--delete" "--exclude=.git" "--exclude=.direnv/" "--exclude=.vscode/" "--exclude=result" "--exclude=channels/" "--exclude=.mypy_cache/" "--exclude=__pycache__") RSYNC_OPTS=("-rlptzv" "--progress" "--delete" "--exclude=.git/" "--exclude=.direnv/" "--exclude=.vscode/" "--exclude=result" "--exclude=channels/" "--exclude=.mypy_cache/" "--exclude=__pycache__")
while getopts ':Jj:' OPT; do while getopts ':Jj:' OPT; do
case $OPT in case $OPT in

View file

@ -38,7 +38,6 @@ in
programs.ssh = { programs.ssh = {
enable = true; enable = true;
package = pkgs.openssh;
# defaults in bottom match block "*" # defaults in bottom match block "*"
# TODO: common config for desktop as well # TODO: common config for desktop as well
serverAliveInterval = 10; serverAliveInterval = 10;