From 522cc99c0352503e439e3a20377fffe7c5390650 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 10 May 2022 13:51:47 +0200 Subject: [PATCH 1/4] home: packages: remove 'rr' No need for this, now that I have a dedicated option for the package. --- home/packages/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/home/packages/default.nix b/home/packages/default.nix index 434cb0d..84c1253 100644 --- a/home/packages/default.nix +++ b/home/packages/default.nix @@ -22,7 +22,6 @@ in file mosh ripgrep - rr termite.terminfo ] ++ cfg.additionalPackages); } From d4c4349cdb071a62c5344de20a453829a1a604f8 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 15 May 2022 17:13:30 +0200 Subject: [PATCH 2/4] pkgs: dragger: fix meta information --- pkgs/dragger/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/dragger/default.nix b/pkgs/dragger/default.nix index cd0d453..e535944 100644 --- a/pkgs/dragger/default.nix +++ b/pkgs/dragger/default.nix @@ -23,7 +23,7 @@ qt5.mkDerivation rec { description = "A CLI drag-and-drop tool"; homepage = "https://gitea.belanyi.fr/ambroisie/dragger"; license = licenses.mit; - maintainers = [ ambroisie ]; + maintainers = with maintainers; [ ambroisie ]; platforms = platforms.linux; }; } From 1fa47793e899bb260b73d7b2c01c724a8713391a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 19 May 2022 14:53:05 +0200 Subject: [PATCH 3/4] home: vim: completion: activate 'ghost_text' I'm still thinking whether I would want to use one of those signature helper windows to go with this/replace this feature. Could be especially useful in C++. --- home/vim/plugin/settings/completion.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/vim/plugin/settings/completion.vim b/home/vim/plugin/settings/completion.vim index 9a3d7e6..43f6795 100644 --- a/home/vim/plugin/settings/completion.vim +++ b/home/vim/plugin/settings/completion.vim @@ -57,5 +57,8 @@ cmp.setup({ cmp.config.compare.order, }, }, + experimental = { + ghost_text = true, + }, }) EOF From 46bc5cb3926bcbccededf27f9ffd394c8bc69499 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 23 May 2022 11:07:05 +0200 Subject: [PATCH 4/4] pkgs: unified-hosts-lists: 3.9.11 -> 3.10.1 --- pkgs/unified-hosts-lists/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/unified-hosts-lists/default.nix b/pkgs/unified-hosts-lists/default.nix index 4b0e0c6..61ac0c4 100644 --- a/pkgs/unified-hosts-lists/default.nix +++ b/pkgs/unified-hosts-lists/default.nix @@ -1,13 +1,13 @@ { lib, fetchFromGitHub, stdenvNoCC }: stdenvNoCC.mkDerivation rec { pname = "unified-hosts-lists"; - version = "3.9.11"; + version = "3.10.1"; src = fetchFromGitHub { owner = "StevenBlack"; repo = "hosts"; rev = version; - sha256 = "sha256-JFz6M0Mkwoby7I6LLWx0QfvZMzwET2FEQ1OGKQnFfho="; + sha256 = "sha256-PFKKYtssjAJGrP3AQE32ZJGlxwxnFa0vUTpCn94fCFI="; }; dontUnpack = true;