home-manager | added khard
This commit is contained in:
parent
69725af0df
commit
76a1fd2231
2 changed files with 32 additions and 0 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./terminals.nix
|
./terminals.nix
|
||||||
|
./khard.nix
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
username = "don";
|
username = "don";
|
||||||
|
|
|
||||||
31
home/khard.nix
Normal file
31
home/khard.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [ khard ];
|
||||||
|
xdg.configFile."khard/khard.conf".text = ''
|
||||||
|
[addressbooks]
|
||||||
|
[[contacts]]
|
||||||
|
path = ~/.config/vdirsyncer/storage/contacts/default
|
||||||
|
|
||||||
|
[general]
|
||||||
|
debug = no
|
||||||
|
default_action = list
|
||||||
|
editor = vim
|
||||||
|
merge_editor = vimdiff
|
||||||
|
|
||||||
|
[contact table]
|
||||||
|
display = first_name
|
||||||
|
group_by_addressbook = no
|
||||||
|
reverse = no
|
||||||
|
show_nicknames = no
|
||||||
|
show_uids = no
|
||||||
|
sort = last_name
|
||||||
|
localize_dates = yes
|
||||||
|
preferred_phone_number_type = pref, cell, home
|
||||||
|
preferred_email_address_type = pref, work, home
|
||||||
|
|
||||||
|
[vcard]
|
||||||
|
private_objects = Jabber, Skype, Twitter, Mastodon
|
||||||
|
preferred_version = 3.0
|
||||||
|
search_in_source_files = no
|
||||||
|
skip_unparsable = no
|
||||||
|
'';
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue