Skip to content

Commit

Permalink
fix: nix not understanding = in flags from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotcorreia committed Nov 12, 2024
1 parent a546510 commit 53dafdf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ in {
allowReboot = true;
flags = [
# Only use one job/core to avoid running out of memory and disrupting operations
"--max-jobs=1"
"--cores=1"
"--max-jobs"
"1"
"--cores"
"1"
];

dates = "04:00";
Expand Down

0 comments on commit 53dafdf

Please sign in to comment.