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

12 lines
249 B
Nix

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