transmission
This commit is contained in:
parent
f436f27dae
commit
ae4c015219
3 changed files with 19 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
||||||
nemo.enable = true;
|
nemo.enable = true;
|
||||||
keepassxc.enable = true;
|
keepassxc.enable = true;
|
||||||
nicotineplus.enable = true;
|
nicotineplus.enable = true;
|
||||||
|
transmission.enable = true;
|
||||||
};
|
};
|
||||||
chat = {
|
chat = {
|
||||||
discord.enable = true;
|
discord.enable = true;
|
||||||
|
|
|
@ -4,5 +4,6 @@
|
||||||
./nicotineplus
|
./nicotineplus
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
./nemo
|
./nemo
|
||||||
|
./transmission
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
17
modules/desktop/apps/transmission/default.nix
Normal file
17
modules/desktop/apps/transmission/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.example;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.example = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
#TODO(sako):: figure out service
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
transmission-gtk
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue