Compare commits

..

4 Commits

Author SHA1 Message Date
4ba07466f6 use recent packages 2026-01-21 22:22:46 -06:00
776279cd31 option 2026-01-21 21:58:04 -06:00
cb51d5fc9a import 2026-01-21 21:49:57 -06:00
32eab76974 import 2026-01-21 21:40:46 -06:00
2 changed files with 21 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
{ lib, pkgs, inputs, ... }: {
{ lib, pkgs, inputs, ... } @ exputs: {
options.sysconfig.remoteBuildClient = with lib; mkOption {
type = with types; bool;
@@ -16,43 +16,24 @@
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
];
config = { config, lib, pkgs, ... }: {
imports = [
inputs.olympus.homes.nathan
];
config = lib.mkMerge [
(inputs.olympus.homes.nathan exputs)
({ 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";
};
};
})
];
};
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";

View File

@@ -4,15 +4,15 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
url = "github:nix-community/nix-on-droid";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};