From 819b81d8d23ebd2b18c3c1d9eb512c193c44232c Mon Sep 17 00:00:00 2001 From: Andreas Schaafsma Date: Tue, 27 Jan 2026 01:23:30 +0100 Subject: [PATCH] fix mistake from copypasting boilerplate --- modules/nixos/performance-tuning/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/performance-tuning/default.nix b/modules/nixos/performance-tuning/default.nix index 149f5b1..ac2ae65 100644 --- a/modules/nixos/performance-tuning/default.nix +++ b/modules/nixos/performance-tuning/default.nix @@ -4,7 +4,7 @@ let cfg = config.${namespace}.performance-tuning; in { options.${namespace}.performance-tuning.enable = lib.mkEnableOption "XFCE desktop environment"; - config = lib.mkIf cfg.xfce.enable { + config = lib.mkIf cfg.enable { boot.kernelParams = [ "nvme_core.default_ps_max_latency_us=0" ];