From c2f0d9bebe68c11f4d018a18bd5d3880712c6873 Mon Sep 17 00:00:00 2001 From: schererleander Date: Tue, 29 Jul 2025 02:03:38 +0200 Subject: chore: move home-manager modules in seperate folder --- modules/home-manager/dunst.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/home-manager/dunst.nix (limited to 'modules/home-manager/dunst.nix') diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix new file mode 100644 index 0000000..87ae210 --- /dev/null +++ b/modules/home-manager/dunst.nix @@ -0,0 +1,16 @@ +{ config, pkgs, lib, ...}: + +{ + options.dunst.enable = lib.mkEnableOption "Setup dunst notification"; + config = lib.mkIf config.dunst.enable { + services.dunst = { + enable = true; + settings = { + global = { + transparency = 10; + font = "monospace 10"; + }; + }; + }; + }; +} -- cgit v1.3.1