dot_testing/home/vdirsyncer/default.nix

14 lines
203 B
Nix
Raw Normal View History

{ lib, config, pkgs, home, ... }:
{
2024-03-15 18:51:36 -05:00
home.packages = with pkgs; [
vdirsyncer
];
home.file = {
".config/vdirsyncer/config" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/vdirsyncer/config;
};
};
}