This commit is contained in:
lsoriano-mcm
2025-06-28 17:27:08 -05:00
parent 1e19f865de
commit ea86b6f7e5
5 changed files with 4 additions and 54 deletions
-29
View File
@@ -1,29 +0,0 @@
{
pkgs,
general,
builds,
inputs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
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";
}