nixos-config/configurations/joplin.nix
Charlotte Van Petegem cfb48de40c Reorganize for zfs
2020-05-23 09:59:32 +02:00

12 lines
257 B
Nix

{ ... }:
{
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ joplin-desktop ];
};
custom.zfs.homeLinks = [
{ path = ".config/joplin-desktop"; type = "data"; }
{ path = ".config/Joplin"; type = "data"; }
];
}