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
|
||||
imagemagick
|
||||
restic
|
||||
emacs-macport
|
||||
coreutils-prefixed
|
||||
];
|
||||
|
||||
# Homebrew
|
||||
|
|
|
|||
|
|
@ -124,14 +124,18 @@
|
|||
};
|
||||
|
||||
# Root SSH
|
||||
programs.ssh.extraConfig = ''
|
||||
Host dnsc-storage
|
||||
Port 23
|
||||
IdentitiesOnly yes
|
||||
User u295965
|
||||
HostName u295965.your-storagebox.de
|
||||
IdentityFile /root/.ssh/id_ed25519
|
||||
'';
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks = {
|
||||
"dnsc-storage" = {
|
||||
hostname = "u295965.your-storagebox.de";
|
||||
user = "u295965";
|
||||
identityFile = "/root/.ssh/id_ed25519";
|
||||
identitiesOnly = true;
|
||||
port = 23;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Services
|
||||
# ZFS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue