initial commit
This commit is contained in:
commit
90cff4f16a
59 changed files with 6855 additions and 0 deletions
26
Hetzner/builder.nix
Normal file
26
Hetzner/builder.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue