From 391f18ce294969efb621711c912630c6e6db5f36 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 21 Sep 2023 12:14:35 +0200 Subject: [PATCH] feat: disable useSystemClipboard by default --- modules/basic/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/basic/module.nix b/modules/basic/module.nix index 553ee15..516a4ba 100644 --- a/modules/basic/module.nix +++ b/modules/basic/module.nix @@ -90,7 +90,7 @@ with builtins; { useSystemClipboard = mkOption { type = types.bool; - default = true; + default = false; description = "Make use of the clipboard for default yank and paste operations. Don't use * and +"; };