Add imac host

This commit is contained in:
Yan Lin 2025-10-13 17:07:15 +02:00
parent 3c5c317389
commit 6567787880
3 changed files with 41 additions and 0 deletions

View file

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