nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 20.09-beta 12 lines 221 B view raw
1{ lib, ... }: { 2 options.submodule = lib.mkOption { 3 type = lib.types.submoduleWith { 4 modules = [ 5 ./declare-enable.nix 6 ]; 7 }; 8 default = {}; 9 }; 10 11 config.submodule = ./define-enable.nix; 12}