feat(nix): try to make building faster and more verbose
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
09bf854468
commit
0a60fa42a4
2 changed files with 6 additions and 2 deletions
|
@ -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"];
|
||||
|
|
|
@ -16,7 +16,6 @@ const watchAndCompileSass = (host) => {
|
|||
monitorFile(
|
||||
`${App.configDir}/scss`,
|
||||
reloadCss,
|
||||
'directory',
|
||||
);
|
||||
reloadCss();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue