From 29dcddcdfb69269d6982483e2bc47805e4c7374d Mon Sep 17 00:00:00 2001 From: transcaffeine Date: Fri, 7 Nov 2025 22:33:44 +0100 Subject: [PATCH] chore(hosts/nixos-unstable): add nixpkgs-review, remove fork-only workerThread setting --- hosts/nixos-unstable/configuration.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/nixos-unstable/configuration.nix b/hosts/nixos-unstable/configuration.nix index d3ff778..2258248 100644 --- a/hosts/nixos-unstable/configuration.nix +++ b/hosts/nixos-unstable/configuration.nix @@ -22,6 +22,7 @@ extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ tree + nixpkgs-review ]; }; users.users.bob = { @@ -41,7 +42,6 @@ services.nscd = { enableNsncd = true; - workerThreads = 2; }; environment.systemPackages = with pkgs; [ ]; @@ -53,5 +53,4 @@ # networking.firewall.enable = false; system.stateVersion = "25.05"; # Did you read the comment? - }