diff --git a/flake.lock b/flake.lock index 1851eb7..3fcb387 100644 --- a/flake.lock +++ b/flake.lock @@ -69,11 +69,11 @@ }, "mnw": { "locked": { - "lastModified": 1723419050, - "narHash": "sha256-Eb8jBUgHwpte+bGsqeXNbKMBfZaDB7RiPQwyb1vzJK8=", + "lastModified": 1724456641, + "narHash": "sha256-SMgnviF6ofBPbyV3+rljPGcX0Hn9HBOhgXE10Cyjaic=", "owner": "Gerg-L", "repo": "mnw", - "rev": "e625f5965567f16102bc52897c7600dcde53c6c3", + "rev": "c261925dbbf02f523af0e8add844df64fddf0359", "type": "github" }, "original": { diff --git a/modules/plugins/theme/supported-themes.nix b/modules/plugins/theme/supported-themes.nix index 6d992c4..63335e4 100644 --- a/modules/plugins/theme/supported-themes.nix +++ b/modules/plugins/theme/supported-themes.nix @@ -6,7 +6,7 @@ inherit (lib.trivial) boolToString warnIf; in { onedark = { - setup = {style ? "dark"}: '' + setup = {style ? "dark", ...}: '' -- OneDark theme require('onedark').setup { style = "${style}" @@ -30,7 +30,7 @@ in { }; dracula = { - setup = {transparent}: '' + setup = {transparent, ...}: '' require('dracula').setup({ transparent_bg = ${boolToString transparent}, });