yep, more dotfiles
1{ lib 2, ... 3}: 4 5{ 6 options.local = { 7 flags = { 8 onlyCached = lib.mkOption { 9 description = "Whether to limit the number of pkgs to compile on device"; 10 type = with lib.types; bool; 11 12 default = false; 13 }; 14 }; 15 }; 16}