home-lab/packages/default.nix
Geir Okkenhaug Jerstad e69fd5856f some small notes
2025-06-06 12:22:53 +02:00

16 lines
No EOL
347 B
Nix

{ pkgs ? import <nixpkgs> { } }:
{
# Custom packages for Home-lab infrastructure
# Home-lab administration command-line tool
lab = pkgs.callPackage ./home-lab-tools.nix { };
# Re-export commonly used packages with custom configurations
inherit (pkgs)
# Core utilities that might be customized
git
curl
wget
;
}