Fixed: Warnings, Remote Builders
This commit is contained in:
15
home/git.nix
15
home/git.nix
@@ -2,14 +2,11 @@
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "DerGrumpf"; # TODO replace
|
||||
userEmail = "p.keier@beyerstedt-it.de"; # TODO replace
|
||||
|
||||
lfs.enable = true;
|
||||
|
||||
ignores = [ "**/.DS_STORE" ];
|
||||
|
||||
extraConfig = {
|
||||
settings = {
|
||||
user = {
|
||||
name = "DerGrumpf"; # TODO replace
|
||||
email = "p.keier@beyerstedt-it.de"; # TODO replace
|
||||
};
|
||||
github = {
|
||||
user = primaryUser;
|
||||
};
|
||||
@@ -17,5 +14,7 @@
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
lfs.enable = true;
|
||||
ignores = [ "**/.DS_STORE" ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
# misc
|
||||
nil # move to nixvim
|
||||
biome # move to nixvim
|
||||
nixfmt-rfc-style # move to nixvim
|
||||
yt-dlp
|
||||
ffmpeg
|
||||
];
|
||||
|
||||
@@ -39,7 +39,6 @@
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
auto-optimise-store = true;
|
||||
builders = "ssh://phil@192.168.2.40 aarch64-linux";
|
||||
builders-use-substitutes = true;
|
||||
};
|
||||
gc = {
|
||||
@@ -47,6 +46,17 @@
|
||||
dates = "weekly";
|
||||
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";
|
||||
|
||||
Reference in New Issue
Block a user