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 = {
# 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"];

View file

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