From 0a60fa42a4f6b31b8943937a1845d8b512f65597 Mon Sep 17 00:00:00 2001 From: matt1432 Date: Wed, 14 Feb 2024 14:50:51 -0500 Subject: [PATCH] feat(nix): try to make building faster and more verbose --- common/default.nix | 7 ++++++- modules/ags/config/js/utils.js | 1 - 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/common/default.nix b/common/default.nix index 0216fb0..7c9481f 100644 --- a/common/default.nix +++ b/common/default.nix @@ -28,11 +28,16 @@ nix = { # Edit nix.conf settings = { - experimental-features = ["nix-command" "flakes"]; + # Store keep-outputs = true; keep-derivations = true; auto-optimise-store = true; + + # Commands + experimental-features = ["nix-command" "flakes"]; + http-connections = 0; # unlimited for local cache warn-dirty = false; + show-trace = true; # remote building trusted-users = ["matt" "nixremote"]; diff --git a/modules/ags/config/js/utils.js b/modules/ags/config/js/utils.js index 4dd1edf..b4a7608 100644 --- a/modules/ags/config/js/utils.js +++ b/modules/ags/config/js/utils.js @@ -16,7 +16,6 @@ const watchAndCompileSass = (host) => { monitorFile( `${App.configDir}/scss`, reloadCss, - 'directory', ); reloadCss(); };