nix/hosts/darwin/macbook/home.nix
2025-11-13 10:40:27 +01:00

16 lines
290 B
Nix

{ config, pkgs, ... }:
{
imports = [
../home-default.nix
];
# MacBook-specific home configuration
# Example: Laptop-specific tools, power management, etc.
# yt-dlp configuration
programs.yt-dlp-custom = {
enable = true;
downloadDir = "~/Downloads/Videos";
};
}