Files
imladris/flake.nix
T
kyleandClaude Fable 5.1 b632e20fd6 dixie: new host — Aurora R11 helper-tier inference node
Alienware Aurora R11 (i7-10700, 64 GB, one RTX 3060 12 GB today; second card
when its fans are replaced). Headless, Wi-Fi only, unencrypted root by
decision (always-on box that must come back from a power cut unattended).

- llama.cpp router (CUDA, from unstable) on :11434 with the three helper
  models resident (--models-max 3): ornith 9B for the Hermes approval guardian
  / title / web_extract and Honcho deriver, qwen3-4b for Honcho dialectic,
  Qwen3-Embedding-0.6B for Honcho embeddings. Vision (qwen3-vl-8b) on its own
  on-demand server on :11433 since it does not fit beside them in 12 GB.
- Both servers tailnet-only (tailscale0 firewall); GPUs capped at 140 W
  (thermal hour 2026-09-21: 75 C plateau, no throttling).
- Model weights on the USB cache stick (ext4 label dixie-cache) bind-mounted
  into /var/lib/llama-server/models; filled from straylight with dixie-push.
- 6.12 LTS kernel (mt7921u for the AX9L USB Wi-Fi arriving 2026-09-24).
- SSH keys baked in: no console after install to add them from.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-21 21:53:40 -07:00

94 lines
2.6 KiB
Nix

{
description = "stolen from neutralinsomniac's nix config";
inputs = {
### Build's broken.
nixpkgs.url = "nixpkgs/nixos-26.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
ke.url = "git+https://git.wntrmute.dev/kyle/ke";
ke.inputs.nixpkgs.follows = "nixpkgs";
kte.url = "git+https://git.wntrmute.dev/kyle/kte";
kte.inputs.nixpkgs.follows = "nixpkgs";
tracker.url = "git+https://git.wntrmute.dev/kyle/tracker";
tracker.inputs.nixpkgs.follows = "nixpkgs";
lector.url = "github:kisom/lector";
lector.inputs.nixpkgs.follows = "nixpkgs";
sgard.url = "github:kisom/sgard";
sgard.inputs.nixpkgs.follows = "nixpkgs";
arca.url = "git+https://git.wntrmute.dev/kyle/arca";
arca.inputs.nixpkgs.follows = "nixpkgs";
cert.url = "github:kisom/cert";
cert.inputs.nixpkgs.follows = "nixpkgs";
mcias.url = "git+https://git@git.wntrmute.dev/mc/mcias.git";
mcr.url = "git+https://git@git.wntrmute.dev/mc/mcr";
mcr.inputs.nixpkgs.follows = "nixpkgs";
mc-proxy.url = "git+https://git@git.wntrmute.dev/mc/mc-proxy";
mc-proxy.inputs.nixpkgs.follows = "nixpkgs";
mcdeploy.url = "git+https://git@git.wntrmute.dev/mc/mcdeploy";
mcdeploy.inputs.nixpkgs.follows = "nixpkgs";
mcp.url = "git+https://git@git.wntrmute.dev/mc/mcp";
mcp.inputs.nixpkgs.follows = "nixpkgs";
herdr.url = "github:herdrdev/herdr/v0.9.0";
herdr.inputs.nixpkgs.follows = "nixpkgs";
# exo.url = "git+https://git.wntrmute.dev/kyle/exo";
# exo.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs@{
self,
nixpkgs,
nix-index-database,
...
}:
let
lib = nixpkgs.lib;
in {
nixosConfigurations = lib.genAttrs [
"dixie"
"imladris"
"ono-sendai"
"orion"
"rift"
"sk"
"straylight"
"svc"
"vade"
] (hostName: lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
{ nixpkgs.hostPlatform = "x86_64-linux"; }
{ networking.hostName = hostName; }
inputs.disko.nixosModules.disko
./hw/${hostName}
./configuration.nix
nix-index-database.nixosModules.nix-index
{ programs.nix-index-database.comma.enable = true; }
{ system.configurationRevision = self.rev or "dirty"; }
];
});
};
}