adapts dnsc-air and dnsc-server
This commit is contained in:
parent
82b20ce0a7
commit
8fb546a6a2
2 changed files with 12 additions and 10 deletions
|
|
@ -60,8 +60,6 @@
|
||||||
fnm
|
fnm
|
||||||
imagemagick
|
imagemagick
|
||||||
restic
|
restic
|
||||||
emacs-macport
|
|
||||||
coreutils-prefixed
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Homebrew
|
# Homebrew
|
||||||
|
|
|
||||||
|
|
@ -124,14 +124,18 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Root SSH
|
# Root SSH
|
||||||
programs.ssh.extraConfig = ''
|
programs.ssh = {
|
||||||
Host dnsc-storage
|
enable = true;
|
||||||
Port 23
|
matchBlocks = {
|
||||||
IdentitiesOnly yes
|
"dnsc-storage" = {
|
||||||
User u295965
|
hostname = "u295965.your-storagebox.de";
|
||||||
HostName u295965.your-storagebox.de
|
user = "u295965";
|
||||||
IdentityFile /root/.ssh/id_ed25519
|
identityFile = "/root/.ssh/id_ed25519";
|
||||||
'';
|
identitiesOnly = true;
|
||||||
|
port = 23;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Services
|
# Services
|
||||||
# ZFS
|
# ZFS
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue