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.
This commit is contained in:
Harald Hoyer 2024-07-19 12:19:28 +02:00
parent 8feaad40a1
commit 8202390990

View file

@ -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 {