2021-04-23 04:27:29 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.programs.scmpuff;
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.cpcloud ];
|
|
|
|
|
|
|
|
options.programs.scmpuff = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption ''
|
2021-04-24 19:06:40 +02:00
|
|
|
scmpuff, a command line tool that allows you to work quicker with Git by
|
2023-07-02 01:45:18 +02:00
|
|
|
substituting numeric shortcuts for files'';
|
2021-04-23 04:27:29 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
2021-05-18 00:47:40 +02:00
|
|
|
default = pkgs.scmpuff;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.scmpuff";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Package providing the {command}`scmpuff` tool.";
|
2021-04-23 04:27:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-04-23 04:27:29 +02:00
|
|
|
Whether to enable Bash integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-04-23 04:27:29 +02:00
|
|
|
Whether to enable Zsh integration.
|
|
|
|
'';
|
|
|
|
};
|
2022-08-22 11:38:58 +02:00
|
|
|
|
|
|
|
enableFishIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-08-22 11:38:58 +02:00
|
|
|
Whether to enable fish integration.
|
|
|
|
'';
|
|
|
|
};
|
2023-10-01 12:17:06 +02:00
|
|
|
|
|
|
|
enableAliases = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable aliases (e.g. gs, ga, gd, gco).
|
|
|
|
'';
|
|
|
|
};
|
2021-04-23 04:27:29 +02:00
|
|
|
};
|
|
|
|
|
2023-10-01 12:17:06 +02:00
|
|
|
config = mkIf cfg.enable (let
|
|
|
|
mkArgs = shell:
|
|
|
|
concatStringsSep " " ([ "--shell=${shell}" ]
|
|
|
|
++ optional (!cfg.enableAliases) "--aliases=false");
|
|
|
|
in {
|
2021-04-23 04:27:29 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
2023-10-01 12:17:06 +02:00
|
|
|
eval "$(${cfg.package}/bin/scmpuff init ${mkArgs "bash"})"
|
2021-04-23 04:27:29 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2023-10-01 12:17:06 +02:00
|
|
|
eval "$(${cfg.package}/bin/scmpuff init ${mkArgs "zsh"})"
|
2021-04-23 04:27:29 +02:00
|
|
|
'';
|
2022-08-22 11:38:58 +02:00
|
|
|
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration
|
|
|
|
(mkAfter ''
|
2023-10-01 12:17:06 +02:00
|
|
|
${cfg.package}/bin/scmpuff init ${mkArgs "fish"} | source
|
2022-08-22 11:38:58 +02:00
|
|
|
'');
|
2023-10-01 12:17:06 +02:00
|
|
|
});
|
2021-04-23 04:27:29 +02:00
|
|
|
}
|