Compare commits
4 Commits
688bcf2ace
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ba07466f6 | |||
| 776279cd31 | |||
| cb51d5fc9a | |||
| 32eab76974 |
55
default.nix
55
default.nix
@@ -1,4 +1,4 @@
|
|||||||
{ lib, pkgs, inputs, ... }: {
|
{ lib, pkgs, inputs, ... } @ exputs: {
|
||||||
|
|
||||||
options.sysconfig.remoteBuildClient = with lib; mkOption {
|
options.sysconfig.remoteBuildClient = with lib; mkOption {
|
||||||
type = with types; bool;
|
type = with types; bool;
|
||||||
@@ -16,43 +16,24 @@
|
|||||||
sharedModules = [
|
sharedModules = [
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
];
|
];
|
||||||
config = { config, lib, pkgs, ... }: {
|
config = lib.mkMerge [
|
||||||
imports = [
|
(inputs.olympus.homes.nathan exputs)
|
||||||
inputs.olympus.homes.nathan
|
({ config, lib, pkgs, ... }: {
|
||||||
];
|
config = {
|
||||||
config = {
|
homeconfig = {
|
||||||
homeconfig = {
|
graphical = false;
|
||||||
graphical = false;
|
minimal = true;
|
||||||
minimal = true;
|
scripts.enable = false;
|
||||||
host = "android";
|
};
|
||||||
scripts.enable = false;
|
|
||||||
|
home.packages = with pkgs; [ nano ];
|
||||||
|
|
||||||
|
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";
|
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
|
||||||
|
|||||||
@@ -4,15 +4,15 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-24.05";
|
url = "github:nix-community/home-manager/release-25.11";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nix-on-droid = {
|
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.nixpkgs.follows = "nixpkgs";
|
||||||
inputs.home-manager.follows = "home-manager";
|
inputs.home-manager.follows = "home-manager";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user