summaryrefslogtreecommitdiff
path: root/home-manager/wayland/modules
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/wayland/modules')
-rw-r--r--home-manager/wayland/modules/foot.nix13
-rw-r--r--home-manager/wayland/modules/zathura.nix15
2 files changed, 28 insertions, 0 deletions
diff --git a/home-manager/wayland/modules/foot.nix b/home-manager/wayland/modules/foot.nix
new file mode 100644
index 0000000..7adaf40
--- /dev/null
+++ b/home-manager/wayland/modules/foot.nix
@@ -0,0 +1,13 @@
+{ ... }: {
+ programs.foot = {
+ enable = true;
+
+ settings = {
+ colors.background = "000000";
+ main = {
+ pad = "10x10";
+ font = "monospace:size=18";
+ };
+ };
+ };
+}
diff --git a/home-manager/wayland/modules/zathura.nix b/home-manager/wayland/modules/zathura.nix
new file mode 100644
index 0000000..f7b7e4d
--- /dev/null
+++ b/home-manager/wayland/modules/zathura.nix
@@ -0,0 +1,15 @@
+{ ... }: {
+ programs.zathura = {
+ enable = true;
+
+ mappings = {
+ "f" = "toggle_fullscreen";
+ "[fullscreen] f" = "toggle_fullscreen";
+ };
+ options = {
+ "font" = "Sans";
+ "statusbar-basename" = true;
+ "selection-clipboard" = "clipboard";
+ };
+ };
+}