summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-09-25 21:54:42 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2024-09-25 21:54:42 +0200
commit0acfa187ec1b35f3bace53bd16702757108ceb44 (patch)
treea56ea48dc78628e4b45ee7be84b5d1ea352fac7d
parentdc00b9a7b38de0b8f402e944ea994883141a601e (diff)
parent2366ea440bef325af875a1e62b1e94666eae8a7c (diff)
Merge branch 'master' of https://git.nathanreiner.xyz/nix/system
-rw-r--r--common/home/default.nix1
-rw-r--r--common/home/programs/alacritty/default.nix6
-rw-r--r--common/home/programs/zathura/default.nix4
3 files changed, 10 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..3887830
--- /dev/null
+++ b/common/home/programs/zathura/default.nix
@@ -0,0 +1,4 @@
+{ ... }:
+{
+ enable = true;
+}