nix-dotfiles/pkgs/default.nix

6 lines
172 B
Nix

{ pkgs ? import <nixpkgs> {} }: let
call = pkg: { name = pkg; value = pkgs.callPackage ./${pkg} {}; };
in builtins.listToAttrs (map call [
# TODO: Add some packages
])