summaryrefslogtreecommitdiff
path: root/home-manager/wayland
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-03-26 21:10:17 +0530
committersinanmohd <sinan@sinanmohd.com>2024-03-26 21:10:25 +0530
commit854039328f9d955ef6b8c47e3bbcec4392a22df2 (patch)
tree63001133a93422810b810e8636dda4d3c6abfd4d /home-manager/wayland
parentdb62db6d812ccb96ef1f7a68957dd95ec273504c (diff)
home-manager/wayland/mako: init
Diffstat (limited to 'home-manager/wayland')
-rw-r--r--home-manager/wayland/home.nix1
-rw-r--r--home-manager/wayland/modules/mako.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/home-manager/wayland/home.nix b/home-manager/wayland/home.nix
index 4c8c0e2..9e3f4ad 100644
--- a/home-manager/wayland/home.nix
+++ b/home-manager/wayland/home.nix
@@ -3,5 +3,6 @@
../common/home.nix
./modules/foot.nix
./modules/zathura.nix
+ ./modules/mako.nix
];
}
diff --git a/home-manager/wayland/modules/mako.nix b/home-manager/wayland/modules/mako.nix
new file mode 100644
index 0000000..23bd1ff
--- /dev/null
+++ b/home-manager/wayland/modules/mako.nix
@@ -0,0 +1,10 @@
+{ ... }: {
+ services.mako = {
+ enable = true;
+ defaultTimeout = 3000;
+
+ borderSize = 2;
+ font = "Sans 13";
+ backgroundColor = "#000000";
+ };
+}