mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-22 08:20:13 +00:00
build slsk-batchdl
using dotnet 8 thanks to help from claude, not sure if i'm actually doing any of this correctly
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.nmasur.presets.programs.slsk-batchdl;
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
options.nmasur.presets.programs.slsk-batchdl.enable = lib.mkEnableOption "slsk downloader";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = [
|
||||
pkgs.nmasur.slsk-batchdl
|
||||
];
|
||||
};
|
||||
}
|
@ -18,6 +18,7 @@ in
|
||||
zfs.enable = lib.mkDefault true;
|
||||
programs = {
|
||||
msmtp.enable = lib.mkDefault true;
|
||||
slsk-batchdl.enable = lib.mkDefault true;
|
||||
};
|
||||
services = {
|
||||
arrs.enable = lib.mkDefault true;
|
||||
|
Reference in New Issue
Block a user