This commit is contained in:
lsoriano-mcm
2025-06-23 14:32:58 -05:00
commit b631cb20a4
16 changed files with 483 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
pkgs,
general,
builds,
...
}: {
imports = [
# Include the results of the hardware scan.
];
environment.systemPackages = with pkgs; [];
nixpkgs.config.allowUnfree = general.allowUnfree;
nix.settings = {
trusted-users = builds.builder.trustedUsers;
experimental-features = ["nix-command" "flakes"];
};
programs.ssh.extraConfig = general.ssh.extraConfig;
nix.distributedBuilds = true;
nix.settings.builders-use-substitutes = true;
# nix.buildMachines = builder.buildMachines;
system.stateVersion = "25.05";
}