Save deluge data

This commit is contained in:
Charlotte Van Petegem 2020-05-26 09:51:10 +02:00
parent 4b4de3f3fe
commit 9c0da334bf
2 changed files with 12 additions and 1 deletions

11
configurations/deluge.nix Normal file
View file

@ -0,0 +1,11 @@
{ ... }:
{
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ deluge ];
};
custom.zfs.homeLinks = [
{ path = ".config/deluge"; type = "data"; }
];
}