Compare commits

..

No commits in common. "a552cbda8dcf869f346d4216086c31148820b164" and "5607a3683976ee31fbb15a74c125840a06380ca8" have entirely different histories.

2 changed files with 2 additions and 9 deletions

View File

@ -1,15 +1,13 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
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,7 +12,6 @@
[editor] [editor]
cursorline = true cursorline = true
true-color = true
[editor.cursor-shape] [editor.cursor-shape]
insert = "bar" insert = "bar"
@ -24,9 +23,6 @@
[editor.indent-guides] [editor.indent-guides]
render = true render = true
[editor.whitespace]
render = "all"
''; '';
packages = with pkgs.unstable; [ packages = with pkgs.unstable; [
@ -36,7 +32,6 @@
rnix-lsp rnix-lsp
python310Packages.python-lsp-server python310Packages.python-lsp-server
texlab texlab
nodePackages.typescript
]; ];
}; };
} }