Fixed: Warnings, Remote Builders

This commit is contained in:
2026-02-11 11:26:31 +01:00
parent 50d930e1ff
commit d21b3b3c19
3 changed files with 19 additions and 11 deletions

View File

@@ -2,20 +2,19 @@
{ {
programs.git = { programs.git = {
enable = true; enable = true;
userName = "DerGrumpf"; # TODO replace settings = {
userEmail = "p.keier@beyerstedt-it.de"; # TODO replace user = {
name = "DerGrumpf"; # TODO replace
lfs.enable = true; email = "p.keier@beyerstedt-it.de"; # TODO replace
};
ignores = [ "**/.DS_STORE" ]; github = {
extraConfig = {
github = {
user = primaryUser; user = primaryUser;
}; };
init = { init = {
defaultBranch = "main"; defaultBranch = "main";
}; };
}; };
lfs.enable = true;
ignores = [ "**/.DS_STORE" ];
}; };
} }

View File

@@ -23,7 +23,6 @@
# misc # misc
nil # move to nixvim nil # move to nixvim
biome # move to nixvim biome # move to nixvim
nixfmt-rfc-style # move to nixvim
yt-dlp yt-dlp
ffmpeg ffmpeg
]; ];

View File

@@ -39,7 +39,6 @@
settings = { settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true; auto-optimise-store = true;
builders = "ssh://phil@192.168.2.40 aarch64-linux";
builders-use-substitutes = true; builders-use-substitutes = true;
}; };
gc = { gc = {
@@ -47,6 +46,17 @@
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 30d"; options = "--delete-older-than 30d";
}; };
buildMachines = [
{
hostName = "192.168.2.40";
system = "aarch64-linux";
user = "phil";
maxJobs = 4;
speedFactor = 2;
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
mandatoryFeatures = [ ];
}
];
}; };
system.stateVersion = "24.11"; system.stateVersion = "24.11";