From 8202390990274b6c7775953d3c8ac2edb6cb5815 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 19 Jul 2024 12:19:28 +0200 Subject: [PATCH] feat: switch to stable nix package in darwin module This commit modifies the `nix` configuration in the `darwin` module, changing from the unstable `nix` package use to the stable version. This change is intended to improve stability and reliability of the module. --- modules/darwin/nix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/darwin/nix/default.nix b/modules/darwin/nix/default.nix index ea488df..50bc1b4 100644 --- a/modules/darwin/nix/default.nix +++ b/modules/darwin/nix/default.nix @@ -11,7 +11,7 @@ in { options.metacfg.nix = with types; { enable = mkBoolOpt true "Whether or not to manage nix configuration."; - package = mkOpt package pkgs.nixUnstable "Which nix package to use."; + package = mkOpt package pkgs.nix "Which nix package to use."; }; config = mkIf cfg.enable {