initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

26
Hetzner/builder.nix Normal file
View file

@ -0,0 +1,26 @@
{ pkgs, ... }:
{
imports = [ ./common.nix ];
networking.hostName = "builder";
nix.settings = {
max-jobs = "auto";
substituters = [
"https://cache.nixos.org"
"https://cache.axiomania.org/main"
];
trusted-public-keys = [
"main:Uz5F0MbXItVx2XCmBbEAMmQ0T6+DZDgLaXWalh1k++o="
];
};
environment.systemPackages = with pkgs; [
git
tmux
attic-client
vim
htop
];
}