huge cleanup
This commit is contained in:
@@ -1,36 +1,32 @@
|
||||
{ config, pkgs, lib, system, user, allowed, secrets, ... }:
|
||||
lib.mkIf (user != "tv")
|
||||
{ pkgs, domain, ... }:
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [ sshfs ];
|
||||
file.".ssh/config".text = ''
|
||||
HOST nxace
|
||||
HostName ${domain}
|
||||
User nx2
|
||||
Port 50022
|
||||
|
||||
home.packages = with pkgs; [
|
||||
sshfs
|
||||
];
|
||||
HOST nxacel
|
||||
HostName 192.168.178.32
|
||||
User nx2
|
||||
Port 50022
|
||||
|
||||
HOST nxrpi
|
||||
HostName ${domain}
|
||||
User pi
|
||||
Port 50023
|
||||
|
||||
home.file.".ssh/config".text = ''
|
||||
HOST nxace
|
||||
HostName nx2.site
|
||||
User nx2
|
||||
Port 50022
|
||||
|
||||
HOST nxacel
|
||||
HostName 192.168.178.32
|
||||
User nx2
|
||||
Port 50022
|
||||
|
||||
HOST nxrpi
|
||||
HostName nx2.site
|
||||
User pi
|
||||
Port 50023
|
||||
|
||||
HOST nxrpil
|
||||
HostName 192.168.178.31
|
||||
User pi
|
||||
Port 50023
|
||||
|
||||
HOST nxgit
|
||||
HostName git.nx2.site
|
||||
User git
|
||||
Port 20022
|
||||
'';
|
||||
HOST nxrpil
|
||||
HostName 192.168.178.31
|
||||
User pi
|
||||
Port 50023
|
||||
|
||||
HOST nxgit
|
||||
HostName git.${domain}
|
||||
User git
|
||||
Port 20022
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user