ops: tewi init

This commit is contained in:
Kat Inskip 2022-09-16 10:41:11 -07:00
parent 3f2422b20f
commit 67c2e70205
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 154 additions and 50 deletions

View file

@ -1,9 +1,9 @@
{ config, pkgs, lib, inputs, meta, ... }: {
imports = with meta; [
hardware.aarch64-darwin
darwin.base
darwin.kat
home.emacs
darwin.base
darwin.kat
home.work
];
security.pam.enableSudoTouchIdAuth = true;
@ -26,27 +26,27 @@
nix = {
envVars = {
"SSH_AUTH_SOCK" = "/Users/kat/.gnupg/S.gpg-agent.ssh";
"SSH_AUTH_SOCK" = "/Users/kat/.gnupg/S.gpg-agent.ssh";
};
buildMachines = [
{
hostName = "renko-build";
sshUser = "root";
system = "x86_64-linux";
maxJobs = 100;
speedFactor = 1;
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}
{
hostName = "daiyousei-build";
sshUser = "root";
system = "aarch64-linux";
maxJobs = 100;
speedFactor = 1;
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}
{
hostName = "renko-build";
sshUser = "root";
system = "x86_64-linux";
maxJobs = 100;
speedFactor = 1;
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}
{
hostName = "daiyousei-build";
sshUser = "root";
system = "aarch64-linux";
maxJobs = 100;
speedFactor = 1;
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
mandatoryFeatures = [ ];
}
];
distributedBuilds = true;
};
@ -54,29 +54,30 @@
homebrew = {
brewPrefix = "/opt/homebrew/bin";
casks = [
"element"
"visual-studio-code"
"firefox"
"telegram"
"discord"
"utm"
"mullvadvpn"
"bitwarden"
"gimp"
"cyberduck"
];
masApps = {
Tailscale = 1475387142;
};
"mullvadvpn"
"android-studio"
"bitwarden"
"telegram"
"deluge"
"element"
"discord"
"firefox"
"gimp"
"cyberduck"
"docker"
"google-chrome"
"android-studio"
"linear-linear"
"pycharm-ce"
"parsec"
"nextcloud"
"slack"
];
masApps = {
Tailscale = 1475387142;
};
environment.systemPackages = with pkgs; [
terraform
yt-dlp
k2tf
awscli
jq
];
};
system.stateVersion = 4;
}
}