This commit is contained in:
2026-01-21 09:22:04 -06:00
parent a642257fb3
commit 933868232c
3 changed files with 22 additions and 31 deletions

View File

@@ -28,6 +28,26 @@
scripts.enable = false;
};
home.packages = with pkgs; [ nano ];
programs.ssh.extraConfig = ''
Host esotericbytes.com
HostName esotericbytes.com
Port 2222
Host builder
HostName esotericbytes.com
Port 2222
User remote-builder
IdentityFile /home/nathan/.ssh/id_ed25519
Host remote
HostName esotericbytes.com
Port 2222
User nathan
IdentityFile /home/nathan/.ssh/id_ed25519
'';
home.username = "nathan";
home.homeDirectory = "/data/data/com.termux.nix/files/home";