1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/abook.nix

45 lines
991 B
Nix
Raw Normal View History

2020-02-29 23:13:12 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.abook;
in {
options.programs.abook = {
enable = mkEnableOption "Abook";
2020-02-29 23:13:12 +01:00
extraConfig = mkOption {
type = types.lines;
default = "";
example = ''
field pager = Pager
view CONTACT = name, email
set autosave=true
'';
description = ''
Extra lines added to {file}`$HOME/.config/abook/abookrc`.
2020-02-29 23:13:12 +01:00
Available configuration options are described in the abook repository:
<https://sourceforge.net/p/abook/git/ci/master/tree/sample.abookrc>.
2020-02-29 23:13:12 +01:00
'';
};
};
config = mkIf cfg.enable {
assertions =
[ (hm.assertions.assertPlatform "programs.abook" pkgs platforms.linux) ];
2020-02-29 23:13:12 +01:00
home.packages = [ pkgs.abook ];
2020-02-29 23:13:12 +01:00
xdg.configFile."abook/abookrc" = mkIf (cfg.extraConfig != "") {
text = ''
# Generated by Home Manager.
# See http://abook.sourceforge.net/
${cfg.extraConfig}
'';
};
};
}