2023-03-11 00:10:05 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.mr;
|
|
|
|
|
|
|
|
listToValue = concatMapStringsSep ", " (generators.mkValueStringDefault { });
|
|
|
|
|
|
|
|
iniFormat = pkgs.formats.ini { inherit listToValue; };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ hm.maintainers.nilp0inter ];
|
|
|
|
|
|
|
|
options.programs.mr = {
|
|
|
|
enable = mkEnableOption
|
2023-07-02 01:45:18 +02:00
|
|
|
"mr, a tool to manage all your version control repositories";
|
2023-03-11 00:10:05 +01:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
package = mkPackageOption pkgs "mr" { };
|
2023-03-11 00:10:05 +01:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = iniFormat.type;
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Configuration written to {file}`$HOME/.mrconfig`
|
|
|
|
See <https://myrepos.branchable.com/>
|
2023-03-11 00:10:05 +01:00
|
|
|
for an example configuration.
|
|
|
|
'';
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
foo = {
|
|
|
|
checkout = "git clone git@github.com:joeyh/foo.git";
|
|
|
|
update = "git pull --rebase";
|
|
|
|
};
|
|
|
|
".local/share/password-store" = {
|
|
|
|
checkout = "git clone git@github.com:myuser/password-store.git";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
home.file.".mrconfig".source = iniFormat.generate ".mrconfig" cfg.settings;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|