From c3d1681e01af335d420440c30aba300e85cf6cca Mon Sep 17 00:00:00 2001 From: Luke Wriglesworth Date: Tue, 25 Mar 2025 01:27:15 -0400 Subject: [PATCH] fix: missing semicolon that breaks nix build (#862) Co-authored-by: Jas Singh --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index 478889a..2b1821f 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -394,7 +394,7 @@ in menus.dashboard.powermenu.reboot = mkStrOption "systemctl reboot"; menus.dashboard.powermenu.shutdown = mkStrOption "systemctl poweroff"; menus.dashboard.powermenu.sleep = mkStrOption "systemctl suspend"; - menus.dashboard.recording.path = mkStrOption "$HOME/Videos/Screencasts" + menus.dashboard.recording.path = mkStrOption "$HOME/Videos/Screencasts"; menus.dashboard.shortcuts.enabled = mkBoolOption true; menus.dashboard.shortcuts.left.shortcut1.command = mkStrOption "microsoft-edge-stable"; menus.dashboard.shortcuts.left.shortcut1.icon = mkStrOption "󰇩";