2024-08-02 17:55:48 -04:00
|
|
|
{ config, lib, ... }:
|
2024-05-16 20:08:57 -04:00
|
|
|
{
|
|
|
|
# Give root user access to run remote builds
|
|
|
|
home-manager.users.root = {
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.ssh = lib.mkIf config.nix.distributedBuilds {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = config.secrets.users.root.sshConfig;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|