Compare commits
6 Commits
933868232c
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ba07466f6 | |||
| 776279cd31 | |||
| cb51d5fc9a | |||
| 32eab76974 | |||
| 688bcf2ace | |||
| e81f61ba47 |
31
default.nix
31
default.nix
@@ -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";
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
|
||||
inputs = {
|
||||
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-25.05";
|
||||
url = "github:nix-community/home-manager/release-25.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
];
|
||||
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
inputs = inputs // olympus.inputs;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user