diff options
author | stuebinm | 2023-05-29 17:15:18 +0200 |
---|---|---|
committer | stuebinm | 2023-05-29 17:15:18 +0200 |
commit | 6c65ac374319e44c922e417f0c2c391d74d9a47d (patch) | |
tree | cc350f4d5bbc63976cf4cd27ce2f5a55be249e25 /chaski | |
parent | e80820c8bf8c1e670072a7f2cbf81f3058f4c904 (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 'chaski')
-rw-r--r-- | chaski/configuration.nix | 3 | ||||
-rw-r--r-- | chaski/services/tracktrain.nix | 1 |
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"; |