Fixed: Warnings, Remote Builders
This commit is contained in:
15
home/git.nix
15
home/git.nix
@@ -2,14 +2,11 @@
|
|||||||
{
|
{
|
||||||
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" ];
|
|
||||||
|
|
||||||
extraConfig = {
|
|
||||||
github = {
|
github = {
|
||||||
user = primaryUser;
|
user = primaryUser;
|
||||||
};
|
};
|
||||||
@@ -17,5 +14,7 @@
|
|||||||
defaultBranch = "main";
|
defaultBranch = "main";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
lfs.enable = true;
|
||||||
|
ignores = [ "**/.DS_STORE" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user