diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-02-12 14:58:19 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-02-12 14:58:19 +0100 |
| commit | 7a1fec44d81dab8520fde69e5545b622a8e17aeb (patch) | |
| tree | 88c84349548544e32c22c6fdaf4a503a096d3043 | |
| parent | 330ade0a84415b29e373b7fdb5c3f1255fee348b (diff) | |
added missing semicolons
| -rw-r--r-- | modules/home/i3wm/nord-blue/helix.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/home/i3wm/nord-blue/helix.nix b/modules/home/i3wm/nord-blue/helix.nix index 2346ea5..435192f 100644 --- a/modules/home/i3wm/nord-blue/helix.nix +++ b/modules/home/i3wm/nord-blue/helix.nix @@ -26,8 +26,8 @@ # Python "pyright" = { - command = "${pkgs.pyright}/bin/pyright" - } + command = "${pkgs.pyright}/bin/pyright"; + }; # Nix "nil" = { @@ -42,7 +42,7 @@ # Markdown "marksman" = { command = "${pkgs.marksman}/bin/marksman"; - } + }; }; language = [ { |
