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