1
0
Fork 0
nix-configuration/modules/users/root/default.nix

12 lines
285 B
Nix
Raw Normal View History

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;
};
};
}