mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-09 16:33:57 -05:00
8 lines
216 B
Nix
8 lines
216 B
Nix
{ lib, config }:
|
|
{
|
|
options.local.packages = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.package;
|
|
default = { };
|
|
};
|
|
config.environment.systemPackages = builtins.attrValues config.local.packages;
|
|
}
|