import
This commit is contained in:
72
default.nix
72
default.nix
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user