mirror of
https://github.com/sstent/vmimages.git
synced 2026-02-06 12:32:54 +00:00
fixing fitbit
This commit is contained in:
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user