fixing fitbit

This commit is contained in:
2023-11-30 21:05:13 +00:00
parent 9567d75cb8
commit 5d7b023166
4 changed files with 136 additions and 167 deletions

View File

@@ -49,6 +49,7 @@
#git-run
mr
perl
just
# beets
# qemu_kvm
# nixos-generators
@@ -102,16 +103,34 @@
};
ssh = {
enable = true;
extraConfig = ''
StrictHostKeyChecking no
UpdateHostKeys yes
identityFile = "~/.ssh/id_rsa"
'';
matchBlocks = {
"*" = {
identityFile = "~/.ssh/id_rsa";
};
# "*" = {
# identityFile = "~/.ssh/id_rsa";
# };
"github.com" = {
user = "git";
identityFile = "~/.ssh/id_rsa_git";
};
"192.168.1.*" = {
user = "root";
extraOptions = {
StrictHostKeyChecking = "no";
UpdateHostKeys = "yes";
UserKnownHostsFile = "/dev/null";
};
};
"odroid*" = {
user = "root";
extraOptions = {
StrictHostKeyChecking = "no";
UpdateHostKeys = "yes";
UserKnownHostsFile = "/dev/null";
};
};
};
};