From 8969535f1c68337222dbc81e795ec7d971ba3cd8 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sun, 28 Dec 2025 10:25:43 -0600 Subject: [PATCH] anyrun: default extraCss to null Prevent creating a file when not configured. Signed-off-by: Austin Horstman --- modules/programs/anyrun.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/anyrun.nix b/modules/programs/anyrun.nix index 030f6078..2d00cf53 100644 --- a/modules/programs/anyrun.nix +++ b/modules/programs/anyrun.nix @@ -185,7 +185,7 @@ in extraCss = mkOption { type = nullOr lines; - default = ""; + default = null; description = '' Extra CSS lines to add to {file}`~/.config/anyrun/style.css`. '';