make useNixCache optional

Changed files
+1 -1
modules
+1 -1
modules/use-nix-cache.nix
···
{
options.custom.useNixCache = lib.mkOption {
type = lib.types.bool;
-
default = true;
};
config = lib.mkIf cfg.useNixCache {
···
{
options.custom.useNixCache = lib.mkOption {
type = lib.types.bool;
+
default = false;
};
config = lib.mkIf cfg.useNixCache {