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

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

View File

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