Fully migrate to transmission

This commit is contained in:
Charlotte Van Petegem 2023-06-07 15:30:57 +02:00
parent 576da79ba7
commit 7c81f1eb6c
No known key found for this signature in database
GPG key ID: 019E764B7184435A
8 changed files with 45 additions and 102 deletions

View file

@ -1,16 +0,0 @@
{ config, lib, pkgs, ... }:
{
options.chvp.programs.deluge.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.programs.deluge.enable {
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ transmission-remote-gtk ];
};
chvp.base.zfs.homeLinks = [{ path = ".config/transmission-remote-gtk"; type = "data"; }];
};
}