My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/modules/programs/pet.nix

106 lines
2.4 KiB

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.pet;
format = pkgs.formats.toml { };
snippetType = types.submodule {
options = {
description = mkOption {
type = types.str;
default = "";
example = "Count the number of commits in the current branch";
description = ''
Description of the snippet.
'';
};
command = mkOption {
type = types.str;
default = "";
example = "git rev-list --count HEAD";
description = ''
The command.
'';
};
output = mkOption {
type = types.str;
default = "";
example = "473";
description = ''
Example output of the command.
'';
};
tag = mkOption {
type = types.listOf types.str;
default = [ ];
example = literalExpression ''["git" "nixpkgs"]'';
description = ''
List of tags attached to the command.
'';
};
};
};
in {
options.programs.pet = {
enable = mkEnableOption "pet";
settings = mkOption {
type = format.type;
default = { };
description = ''
Settings written to <filename>config.toml</filename>. See the pet
documentation for details.
'';
};
selectcmdPackage = mkOption {
type = types.package;
default = pkgs.fzf;
defaultText = literalExpression "pkgs.fzf";
description = ''
The package needed for the <varname>settings.selectcmd</varname>.
'';
};
snippets = mkOption {
type = types.listOf snippetType;
default = [ ];
description = ''
The snippets.
'';
};
};
config = mkIf cfg.enable {
programs.pet.settings = let
defaultGeneral = {
selectcmd = mkDefault "fzf";
snippetfile = config.xdg.configHome + "/pet/snippet.toml";
};
in if versionAtLeast config.home.stateVersion "21.11" then {
General = defaultGeneral;
} else
defaultGeneral;
home.packages = [ pkgs.pet cfg.selectcmdPackage ];
xdg.configFile = {
"pet/config.toml".source = format.generate "config.toml"
(if versionAtLeast config.home.stateVersion "21.11" then
cfg.settings
else {
General = cfg.settings;
});
"pet/snippet.toml".source =
format.generate "snippet.toml" { snippets = cfg.snippets; };
};
};
}