mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
151 lines
3.6 KiB
Nix
151 lines
3.6 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
literalExpression
|
|
maintainers
|
|
mkIf
|
|
mkOption
|
|
types
|
|
;
|
|
|
|
cfg = config.services.git-sync;
|
|
|
|
mkUnit = name: repo: {
|
|
Unit.Description = "Git Sync ${name}";
|
|
|
|
Install.WantedBy = [ "default.target" ];
|
|
|
|
Service = {
|
|
Environment = [
|
|
"PATH=${
|
|
lib.makeBinPath (
|
|
with pkgs;
|
|
[
|
|
openssh
|
|
git
|
|
]
|
|
++ repo.extraPackages
|
|
)
|
|
}"
|
|
"GIT_SYNC_DIRECTORY=${lib.strings.escapeShellArg repo.path}"
|
|
"GIT_SYNC_COMMAND=${cfg.package}/bin/git-sync"
|
|
"GIT_SYNC_REPOSITORY=${lib.strings.escapeShellArg repo.uri}"
|
|
"GIT_SYNC_INTERVAL=${toString repo.interval}"
|
|
];
|
|
ExecStart = "${cfg.package}/bin/git-sync-on-inotify";
|
|
Restart = "on-abort";
|
|
};
|
|
};
|
|
|
|
mkAgent = name: repo: {
|
|
enable = true;
|
|
config = {
|
|
StartInterval = repo.interval;
|
|
ProcessType = "Background";
|
|
WorkingDirectory = "${repo.path}";
|
|
WatchPaths = [ "${repo.path}" ];
|
|
ProgramArguments = [ "${cfg.package}/bin/git-sync" ];
|
|
};
|
|
};
|
|
|
|
mkService = if pkgs.stdenv.isLinux then mkUnit else mkAgent;
|
|
services = lib.mapAttrs' (name: repo: {
|
|
name = "git-sync-${name}";
|
|
value = mkService name repo;
|
|
}) cfg.repositories;
|
|
|
|
repositoryType = types.submodule (
|
|
{ name, ... }:
|
|
{
|
|
options = {
|
|
name = mkOption {
|
|
internal = true;
|
|
default = name;
|
|
type = types.str;
|
|
description = "The name that should be given to this unit.";
|
|
};
|
|
|
|
path = mkOption {
|
|
type = types.path;
|
|
description = "The path at which to sync the repository";
|
|
};
|
|
|
|
uri = mkOption {
|
|
type = types.str;
|
|
example = "git+ssh://user@example.com:/~[user]/path/to/repo.git";
|
|
description = ''
|
|
The URI of the remote to be synchronized. This is only used in the
|
|
event that the directory does not already exist. See
|
|
<https://git-scm.com/docs/git-clone#_git_urls>
|
|
for the supported URIs.
|
|
|
|
This option is not supported on Darwin.
|
|
'';
|
|
};
|
|
|
|
interval = mkOption {
|
|
type = types.int;
|
|
default = 500;
|
|
description = ''
|
|
The interval, specified in seconds, at which the synchronization will
|
|
be triggered even without filesystem changes.
|
|
'';
|
|
};
|
|
|
|
extraPackages = mkOption {
|
|
type = with types; listOf package;
|
|
default = [ ];
|
|
example = literalExpression "with pkgs; [ git-crypt ]";
|
|
description = ''
|
|
Extra packages available to git-sync.
|
|
'';
|
|
};
|
|
};
|
|
}
|
|
);
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [
|
|
maintainers.imalison
|
|
maintainers.cab404
|
|
maintainers.ryane
|
|
];
|
|
|
|
options = {
|
|
services.git-sync = {
|
|
enable = lib.mkEnableOption "git-sync services";
|
|
|
|
package = lib.mkPackageOption pkgs "git-sync" { };
|
|
|
|
repositories = mkOption {
|
|
type = with types; attrsOf repositoryType;
|
|
description = ''
|
|
The repositories that should be synchronized.
|
|
'';
|
|
example = literalExpression ''
|
|
{
|
|
xyz = {
|
|
path = "''${config.home.homeDirectory}/foo/home-manager";
|
|
uri = "git@github.com:nix-community/home-manager.git";
|
|
interval = 1000;
|
|
};
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable (
|
|
lib.mkMerge [
|
|
(mkIf pkgs.stdenv.isLinux { systemd.user.services = services; })
|
|
(mkIf pkgs.stdenv.isDarwin { launchd.agents = services; })
|
|
]
|
|
);
|
|
|
|
}
|