nix/hosts/darwin/imac/home.nix
2025-09-16 01:35:05 +02:00

16 lines
296 B
Nix

{ config, pkgs, ... }:
{
imports = [
../home-default.nix
];
# iMac-specific home configuration
# Example: Different screen setup, desktop-specific tools, etc.
# yt-dlp configuration
programs.yt-dlp-custom = {
enable = true;
downloadDir = "~/Downloads/Videos";
};
}