1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 20:03:29 +02:00
home-manager/tests/modules/programs/abook/with-settings.nix

40 lines
934 B
Nix
Raw Normal View History

2020-02-29 23:13:12 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.abook = {
enable = true;
extraConfig = ''
# Defining a new custom field
# -----------------------------
field pager = Pager
field address_lines = Address, list
field birthday = Birthday, date
# Defining a view/tab
# ---------------------
view CONTACT = name, email
view ADDRESS = address_lines, city, state, zip, country
view PHONE = phone, workphone, pager, mobile, fax
view OTHER = url, birthday
# Automatically save database on exit
set autosave=true
'';
};
nixpkgs.overlays =
[ (self: super: { abook = pkgs.writeScriptBin "dummy-abook" ""; }) ];
2020-02-29 23:13:12 +01:00
nmt.script = ''
assertFileExists home-files/.config/abook/abookrc
assertFileContent home-files/.config/abook/abookrc ${./with-settings.cfg}
'';
};
}