add .env shellhook

This commit is contained in:
2026-01-21 20:21:27 -05:00
parent 9345a941fb
commit f569f382f5

View File

@@ -29,6 +29,14 @@
pkgs.go
pkgs.yt-dlp
];
shellHook = ''
if [ -f .env ]; then
set -a
source .env
set +a
fi
'';
};
});
};