ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
{ config, pkgs, lib, ... }:

let
  cfg = config.ctucxConfig.programs.yt-dlp;

in {

  options = {
    ctucxConfig.programs.yt-dlp = {
      enable = lib.mkEnableOption "yt-dlp";
    };
  };

  config = lib.mkIf cfg.enable {
    home-manager.users.katja.home.packages = with pkgs; [
      yt-dlp
      (pkgs.writeShellScriptBin "youtube-dl" ''
        exec ${pkgs.yt-dlp}/bin/yt-dlp --compat-options youtube-dl "$@"
      '')
    ];

    home-manager.users.katja.home.shellAliases = {
      yt-dlp-audio = "yt-dlp --format bestaudio -x --audio-format opus --add-metadata --embed-thumbnail";
    };
  };

}