From 4f54a8df43907a337074bb1716dc1e0e85915742 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 18 Apr 2024 17:26:54 +0200 Subject: [PATCH] fixup! feat(nix-settings): use unstable's nixUnstable (which ironically is the latest release) --- nix/os/snippets/nix-settings.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nix/os/snippets/nix-settings.nix b/nix/os/snippets/nix-settings.nix index 050780e..0e0f8c5 100644 --- a/nix/os/snippets/nix-settings.nix +++ b/nix/os/snippets/nix-settings.nix @@ -3,7 +3,9 @@ pkgs, lib, ... -}: { +}: let + pkgsUnstable = import nodeFlake.inputs.nixpkgs-unstable {inherit (pkgs) system config;}; +in { nix.daemonCPUSchedPolicy = "idle"; nix.daemonIOSchedClass = "idle"; nix.settings.max-jobs = lib.mkDefault "auto";