aboutsummaryrefslogtreecommitdiff
path: root/home/rices/original/dunst.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-31 12:31:00 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-03-31 12:31:00 +0200
commit59be3fbd673d64c12a1a831081b40f4ae888c939 (patch)
treea1b0ab9df313bf6282d50a7ffc19ae3db517dc26 /home/rices/original/dunst.nix
parentd8b557099f4d4938f7f87c236f22d416191fcde9 (diff)
Moved the original i3 config to /home/rices/original to be in line with the other refactored configs
Diffstat (limited to 'home/rices/original/dunst.nix')
-rw-r--r--home/rices/original/dunst.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/home/rices/original/dunst.nix b/home/rices/original/dunst.nix
new file mode 100644
index 0000000..9978d38
--- /dev/null
+++ b/home/rices/original/dunst.nix
@@ -0,0 +1,41 @@
+{ config, pkgs, lib, ... }:
+
+let
+ vars = import ./variables.nix;
+in {
+ services.dunst = {
+ enable = true;
+
+ settings = {
+ global = {
+ width = "(200,300)";
+ height = "(0,150)";
+ offset = "(30,50)";
+ origin = "bottom-right";
+ transparency = 10;
+ frame_width = 0;
+ font = "Fira Code 10";
+ };
+
+ urgency_low = {
+ background = vars.colors.background;
+ foreground = vars.colors.foreground;
+ timeout = 8;
+ };
+
+ urgency_normal = {
+ background = vars.colors.background;
+ foreground = vars.colors.foreground;
+ frame-size = "0";
+ timeout = 10;
+ };
+
+ urgency_critical = {
+ background = vars.colors.background;
+ foreground = vars.colors.foreground;
+ frame-size = "5";
+ frame-color = vars.colors.alert;
+ };
+ };
+ };
+}