nix-config/home/dav/default.nix

14 lines
383 B
Nix
Raw Normal View History

2022-12-29 21:07:03 +01:00
{ config, pkgs, stablePkgs, ... }:
2022-01-18 09:32:55 +01:00
let
contacts = "${config.home.homeDirectory}/Contacts";
2022-01-19 11:30:41 +01:00
addressbook = "${config.home.homeDirectory}/.abook/addressbook";
2022-01-18 09:32:55 +01:00
davsync = pkgs.callPackage ./davsync.nix {
inherit config pkgs contacts addressbook;
};
in {
imports = [ ./common.nix ];
2022-12-29 21:07:03 +01:00
home.packages =
[ davsync pkgs.vdirsyncer stablePkgs.khal pkgs.khard pkgs.abook ];
2022-01-18 09:32:55 +01:00
}