Compare commits

...

2 Commits

Author SHA1 Message Date
Giulio De Pasquale
a552cbda8d helix: Force true-color. Added typescript package for LSP. Render whitespaces 2022-11-10 15:07:05 +01:00
Giulio De Pasquale
928a9a4456 minecraft: Switch to unstable 2022-11-10 10:59:09 +01:00
2 changed files with 9 additions and 2 deletions

View File

@ -3,11 +3,13 @@
let let
domain = "minecraft.giugl.io"; domain = "minecraft.giugl.io";
network = import ./network.nix; network = import ./network.nix;
in { in
{
services.minecraft-server = { services.minecraft-server = {
enable = true; enable = true;
eula = true; eula = true;
declarative = true; declarative = true;
package = pkgs.unstable.minecraft-server;
serverProperties = { motd = "Welcome on the RuNas server!"; }; serverProperties = { motd = "Welcome on the RuNas server!"; };
}; };

View File

@ -12,6 +12,7 @@
[editor] [editor]
cursorline = true cursorline = true
true-color = true
[editor.cursor-shape] [editor.cursor-shape]
insert = "bar" insert = "bar"
@ -23,6 +24,9 @@
[editor.indent-guides] [editor.indent-guides]
render = true render = true
[editor.whitespace]
render = "all"
''; '';
packages = with pkgs.unstable; [ packages = with pkgs.unstable; [
@ -32,6 +36,7 @@
rnix-lsp rnix-lsp
python310Packages.python-lsp-server python310Packages.python-lsp-server
texlab texlab
nodePackages.typescript
]; ];
}; };
} }