From b50a6f6439cc11fc97f75a7860076a6d44d09366 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 25 Sep 2024 14:04:21 +0200 Subject: alacritty: hide cursor when typing --- common/home/programs/alacritty/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'common/home/programs') diff --git a/common/home/programs/alacritty/default.nix b/common/home/programs/alacritty/default.nix index 85b539f..9f22e55 100644 --- a/common/home/programs/alacritty/default.nix +++ b/common/home/programs/alacritty/default.nix @@ -1,6 +1,6 @@ { ... }: { - enable = true; + enable = true; settings = { colors = { @@ -75,5 +75,9 @@ y = 5; }; }; + + mouse = { + hide_when_typing = true; + }; }; } -- cgit v1.2.3-70-g09d2 From 70907774c1ce24446e09deb9858bcaca5c5b7463 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 25 Sep 2024 14:15:10 +0200 Subject: add zathura --- common/home/default.nix | 1 + common/home/programs/zathura/default.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 common/home/programs/zathura/default.nix (limited to 'common/home/programs') diff --git a/common/home/default.nix b/common/home/default.nix index c98267b..4e341ba 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -22,6 +22,7 @@ let "mbsync" "msmtp" "direnv" + "zathura" ]; services = [ "syncthing" diff --git a/common/home/programs/zathura/default.nix b/common/home/programs/zathura/default.nix new file mode 100644 index 0000000..ecae289 --- /dev/null +++ b/common/home/programs/zathura/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: +{ + enable = true; + package = pkgs.zathura.override { useMupdf = true; }; +} -- cgit v1.2.3-70-g09d2 From 2366ea440bef325af875a1e62b1e94666eae8a7c Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 25 Sep 2024 18:11:46 +0200 Subject: add zathura --- common/home/programs/zathura/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common/home/programs') diff --git a/common/home/programs/zathura/default.nix b/common/home/programs/zathura/default.nix index ecae289..3887830 100644 --- a/common/home/programs/zathura/default.nix +++ b/common/home/programs/zathura/default.nix @@ -1,5 +1,4 @@ -{ pkgs, ... }: +{ ... }: { enable = true; - package = pkgs.zathura.override { useMupdf = true; }; } -- cgit v1.2.3-70-g09d2