nix-config/nixos/modules/packages.nix
2022-09-18 17:33:24 +02:00

10 lines
233 B
Nix

{ config, lib, ... }:
{
options = {
dadada.pkgs = lib.mkOption {
type = lib.types.attrsOf lib.types.package;
description = "Additional packages that are not sourced from nixpkgs";
default = { };
};
};
}