aboutsummaryrefslogtreecommitdiff
path: root/modules/dunst.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dunst.nix')
-rw-r--r--modules/dunst.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/dunst.nix b/modules/dunst.nix
deleted file mode 100644
index 87ae210..0000000
--- a/modules/dunst.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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";
- };
- };
- };
- };
-}