From 49dbf074be23286e0958cb53f1016b8d123121a1 Mon Sep 17 00:00:00 2001 From: Shivanshu Kant Prasad Date: Wed, 23 Aug 2023 17:10:33 +0530 Subject: [PATCH] Bug Fix: NixOS Missing Semicolon in `module.nix` (#41) Nix build was broken due to a missing semicolon. --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index 4596f44..93bbb61 100644 --- a/module.nix +++ b/module.nix @@ -136,7 +136,7 @@ in { AudioNumbers = mkOption { type = types.bool; default = false; - description = "Display numbers instead of a slider for the two audio widgets. Doesn't affect the audio flyin" + description = "Display numbers instead of a slider for the two audio widgets. Doesn't affect the audio flyin"; }; AudioMinVolume = mkOption { type = types.nullOr types.int;