Add yt-dlp

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-08-09 13:18:59 +03:00
parent 22e0150a65
commit 97a7256967
9 changed files with 72 additions and 20 deletions

View File

@@ -0,0 +1,4 @@
{ ... }:
{
imports = [ ./options.nix ];
}

View File

@@ -0,0 +1,17 @@
{ lib, ... }:
{
options.hardware.cpu =
with lib;
with types;
{
cores = mkOption {
type = ints.positive;
description = "The number of cpu cores.";
};
threads = mkOption {
type = ints.positive;
description = "The number of cpu threads.";
};
};
}