summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/home/default.nix1
-rw-r--r--common/home/programs/alacritty/default.nix6
-rw-r--r--common/home/programs/zathura/default.nix5
3 files changed, 11 insertions, 1 deletions
diff --git a/common/home/default.nix b/common/home/default.nix
index fb8967c..44b562c 100644
--- a/common/home/default.nix
+++ b/common/home/default.nix
@@ -23,6 +23,7 @@ let
"mbsync"
"msmtp"
"direnv"
+ "zathura"
"mpv"
];
services = [
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;
+ };
};
}
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; };
+}