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(); };