mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
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:
parent
96d7de6db1
commit
84bcce3c25
3 changed files with 96 additions and 0 deletions
|
@ -1673,6 +1673,13 @@ in
|
||||||
support the apropos command.
|
support the apropos command.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2020-09-22T21:03:28+00:00";
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'programs.pet'.
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,6 +103,7 @@ let
|
||||||
(loadModule ./programs/opam.nix { })
|
(loadModule ./programs/opam.nix { })
|
||||||
(loadModule ./programs/password-store.nix { })
|
(loadModule ./programs/password-store.nix { })
|
||||||
(loadModule ./programs/pazi.nix { })
|
(loadModule ./programs/pazi.nix { })
|
||||||
|
(loadModule ./programs/pet.nix { })
|
||||||
(loadModule ./programs/pidgin.nix { })
|
(loadModule ./programs/pidgin.nix { })
|
||||||
(loadModule ./programs/powerline-go.nix { })
|
(loadModule ./programs/powerline-go.nix { })
|
||||||
(loadModule ./programs/qutebrowser.nix { })
|
(loadModule ./programs/qutebrowser.nix { })
|
||||||
|
|
88
modules/programs/pet.nix
Normal file
88
modules/programs/pet.nix
Normal 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; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue