Compare commits

..

1 Commits

Author SHA1 Message Date
32eab76974 import 2026-01-21 21:40:46 -06:00

View File

@@ -16,43 +16,43 @@
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
];
config = { config, lib, pkgs, ... }: {
imports = [
inputs.olympus.homes.nathan
];
config = {
homeconfig = {
graphical = false;
minimal = true;
host = "android";
scripts.enable = false;
config = lib.mkMerge [
inputs.olympus.homes.nathan
({ config, lib, pkgs, ... }: {
config = {
homeconfig = {
graphical = false;
minimal = true;
host = "android";
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";
};
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";
};
};
})
];
};
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";