summaryrefslogtreecommitdiff
path: root/home-manager/wayland
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-04-30 21:23:53 +0530
committersinanmohd <sinan@sinanmohd.com>2024-04-30 21:23:53 +0530
commit3fc51de5171feb362b8373273c3e82de2a70e076 (patch)
treeeb3117b25593dd9b13c67bdd36a7c57407130c96 /home-manager/wayland
parent2489ed494af18c22d7cd100f4fbbe7ca9a659f6e (diff)
home: home-manager -> home
Diffstat (limited to 'home-manager/wayland')
-rw-r--r--home-manager/wayland/home.nix8
-rw-r--r--home-manager/wayland/modules/foot.nix13
-rw-r--r--home-manager/wayland/modules/mako.nix9
-rw-r--r--home-manager/wayland/modules/zathura.nix15
4 files changed, 0 insertions, 45 deletions
diff --git a/home-manager/wayland/home.nix b/home-manager/wayland/home.nix
deleted file mode 100644
index 9e3f4ad..0000000
--- a/home-manager/wayland/home.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ ... }: {
- imports = [
- ../common/home.nix
- ./modules/foot.nix
- ./modules/zathura.nix
- ./modules/mako.nix
- ];
-}
diff --git a/home-manager/wayland/modules/foot.nix b/home-manager/wayland/modules/foot.nix
deleted file mode 100644
index bf1ddc4..0000000
--- a/home-manager/wayland/modules/foot.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ lib, ... }: {
- programs.foot = {
- enable = true;
-
- settings = {
- colors.background = "000000";
- main = {
- pad = "10x10";
- font = lib.mkDefault "monospace:size=18";
- };
- };
- };
-}
diff --git a/home-manager/wayland/modules/mako.nix b/home-manager/wayland/modules/mako.nix
deleted file mode 100644
index 4280fdf..0000000
--- a/home-manager/wayland/modules/mako.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ ... }: {
- services.mako = {
- enable = true;
- defaultTimeout = 3000;
-
- borderSize = 2;
- backgroundColor = "#000000";
- };
-}
diff --git a/home-manager/wayland/modules/zathura.nix b/home-manager/wayland/modules/zathura.nix
deleted file mode 100644
index 6751f32..0000000
--- a/home-manager/wayland/modules/zathura.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ lib, ... }: {
- programs.zathura = {
- enable = true;
-
- mappings = {
- "f" = "toggle_fullscreen";
- "[fullscreen] f" = "toggle_fullscreen";
- };
- options = {
- font = lib.mkDefault "Sans";
- statusbar-basename = true;
- selection-clipboard = "clipboard";
- };
- };
-}