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

@ -3,11 +3,11 @@
{
imports = [
./calibre
./deluge
./eid
./element
./hledger
./obs
./torrents
];
home-manager.users.charlotte = { ... }: {

View file

@ -1,12 +1,12 @@
{ config, lib, pkgs, ... }:
{
options.chvp.programs.deluge.enable = lib.mkOption {
options.chvp.programs.torrents.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.programs.deluge.enable {
config = lib.mkIf config.chvp.programs.torrents.enable {
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ transmission-remote-gtk ];
};