aboutsummaryrefslogtreecommitdiff
path: root/modules/mako.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 13:00:54 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 13:00:54 -0500
commitcfa595c7264a3618759d8382de0996017c558e26 (patch)
treea1cfcaa716330734cc6b1be59dd0b668e446f057 /modules/mako.nix
parentc867dd3ea21816e69de08088385d0d9246433765 (diff)
downloadhome-cfa595c7264a3618759d8382de0996017c558e26.tar.gz
stuff and things...
Diffstat (limited to 'modules/mako.nix')
-rw-r--r--modules/mako.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/mako.nix b/modules/mako.nix
new file mode 100644
index 0000000..b1d9e40
--- /dev/null
+++ b/modules/mako.nix
@@ -0,0 +1,21 @@
+{ config, lib, pkgs, ... }:
+let
+ cfg = config.modules.mako;
+in
+{
+ options.modules.mako = {
+ enable = lib.mkEnableOption "mako";
+ };
+
+ config = {
+ services.mako = lib.mkIf cfg.enable {
+ enable = true;
+ backgroundColor = "#0f0f0fff";
+ textColor = "#cacacaff";
+ borderColor = "#a39ec4ff";
+ borderSize = 1;
+ defaultTimeout = 20000;
+ font = "ComicShannsMono Nerd Font Mono 10";
+ };
+ };
+}