pet: add module

Adds a pet module without sync support as it makes no sense when
configuration is managed with Home Manager and the config would be
unwritable for pet anyway.

PR #1045
This commit is contained in:
Vojtěch Káně 2020-02-23 21:49:50 +01:00 committed by Robert Helgesson
parent 96d7de6db1
commit 84bcce3c25
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
3 changed files with 96 additions and 0 deletions

View File

@ -1673,6 +1673,13 @@ in
support the apropos command.
'';
}
{
time = "2020-09-22T21:03:28+00:00";
message = ''
A new module is available: 'programs.pet'.
'';
}
];
};
}

View File

@ -103,6 +103,7 @@ let
(loadModule ./programs/opam.nix { })
(loadModule ./programs/password-store.nix { })
(loadModule ./programs/pazi.nix { })
(loadModule ./programs/pet.nix { })
(loadModule ./programs/pidgin.nix { })
(loadModule ./programs/powerline-go.nix { })
(loadModule ./programs/qutebrowser.nix { })

88
modules/programs/pet.nix Normal file
View File

@ -0,0 +1,88 @@
{ 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.
'';
};
};
};
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 = literalExample "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 = {
selectcmd = mkDefault "fzf";
snippetfile = config.xdg.configHome + "/pet/snippet.toml";
};
home.packages = [ pkgs.pet cfg.selectcmdPackage ];
xdg.configFile = {
"pet/config.toml".source =
format.generate "config.toml" { General = cfg.settings; };
"pet/snippet.toml".source =
format.generate "snippet.toml" { snippets = cfg.snippets; };
};
};
}