mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
1e7e8ac75d
Add missing `tag` option for elements of `programs.pet.snippets`.
29 lines
621 B
Nix
29 lines
621 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.pet = {
|
|
enable = true;
|
|
selectcmdPackage = pkgs.writeScriptBin "pet-cmd" "" // {
|
|
outPath = "@pet-cmd@";
|
|
};
|
|
snippets = [{
|
|
description = "git: search full history for regex";
|
|
command = "git log -p -G <regex>";
|
|
tag = [ "git" "regex" ];
|
|
}];
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
pet = pkgs.writeScriptBin "pet" "" // { outPath = "@pet@"; };
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/pet/snippet.toml ${./snippet.toml}
|
|
'';
|
|
};
|
|
}
|