summaryrefslogtreecommitdiff
path: root/chaski
diff options
context:
space:
mode:
authorstuebinm2023-05-29 17:15:18 +0200
committerstuebinm2023-05-29 17:15:18 +0200
commit6c65ac374319e44c922e417f0c2c391d74d9a47d (patch)
treecc350f4d5bbc63976cf4cd27ce2f5a55be249e25 /chaski
parente80820c8bf8c1e670072a7f2cbf81f3058f4c904 (diff)
no libX11 on chaski (experimental)
might have to revert this if it causes problems, or if rebuilding all the things annoys me too much.
Diffstat (limited to '')
-rw-r--r--chaski/configuration.nix3
-rw-r--r--chaski/services/tracktrain.nix1
2 files changed, 3 insertions, 1 deletions
diff --git a/chaski/configuration.nix b/chaski/configuration.nix
index c6141fc..6df5715 100644
--- a/chaski/configuration.nix
+++ b/chaski/configuration.nix
@@ -15,7 +15,9 @@
];
+ environment.noXlibs = true;
services.nginx.enable = true;
+ services.nginx.package = pkgs.nginx.override { gd = null; };
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
@@ -42,6 +44,5 @@
firewall.logRefusedConnections = false;
firewall.allowedTCPPorts = [ 80 443 ];
};
-
system.stateVersion = "20.09"; # Did you read the comment?
}
diff --git a/chaski/services/tracktrain.nix b/chaski/services/tracktrain.nix
index 07a47fe..b6394de 100644
--- a/chaski/services/tracktrain.nix
+++ b/chaski/services/tracktrain.nix
@@ -98,6 +98,7 @@ in
config = { config, pkgs, ... }: {
+ environment.noXlibs = true;
systemd.services.dufs = {
enable = true;
description = "assets for tracktrain's frontend";