feat(nix): try to make building faster and more verbose
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-02-14 14:50:51 -05:00
parent 09bf854468
commit 0a60fa42a4
2 changed files with 6 additions and 2 deletions

View file

@ -28,11 +28,16 @@
nix = { nix = {
# Edit nix.conf # Edit nix.conf
settings = { settings = {
experimental-features = ["nix-command" "flakes"]; # Store
keep-outputs = true; keep-outputs = true;
keep-derivations = true; keep-derivations = true;
auto-optimise-store = true; auto-optimise-store = true;
# Commands
experimental-features = ["nix-command" "flakes"];
http-connections = 0; # unlimited for local cache
warn-dirty = false; warn-dirty = false;
show-trace = true;
# remote building # remote building
trusted-users = ["matt" "nixremote"]; trusted-users = ["matt" "nixremote"];

View file

@ -16,7 +16,6 @@ const watchAndCompileSass = (host) => {
monitorFile( monitorFile(
`${App.configDir}/scss`, `${App.configDir}/scss`,
reloadCss, reloadCss,
'directory',
); );
reloadCss(); reloadCss();
}; };