summaryrefslogtreecommitdiff
path: root/home-modules/desktop/wayland/mako.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-19 21:02:52 +0100
commit892de67a9f64d0b0cdb023d830a019d8feec0a57 (patch)
tree0c5fd0c60ef93bb5cdc5f83c8cade0c5dddb4899 /home-modules/desktop/wayland/mako.nix
parentf5b37610b3835ea26757ef36d554ec598d53100c (diff)
Nix fmt
Diffstat (limited to 'home-modules/desktop/wayland/mako.nix')
-rw-r--r--home-modules/desktop/wayland/mako.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/home-modules/desktop/wayland/mako.nix b/home-modules/desktop/wayland/mako.nix
index 15c7969..7dac41c 100644
--- a/home-modules/desktop/wayland/mako.nix
+++ b/home-modules/desktop/wayland/mako.nix
@@ -1,12 +1,18 @@
-{pkgs, config, hostconfig, lib,...}: {
+{
+ pkgs,
+ config,
+ hostconfig,
+ lib,
+ ...
+}:
+{
options.homeprogs.mako.enable = lib.mkEnableOption "Enable Mako notification manager";
config = lib.mkIf config.homeprogs.mako.enable {
services.mako = {
enable = true;
};
- xdg.configFile."mako/config".source = ./mako.ini;
-
- };
+ xdg.configFile."mako/config".source = ./mako.ini;
+ };
}