From 9b892957163f79a7cfc3f2529275d83f4f9cb3bc Mon Sep 17 00:00:00 2001 From: Mo <65728018+Moe1369@users.noreply.github.com> Date: Thu, 12 Mar 2026 09:34:59 +0100 Subject: [PATCH] Remove import of unstable Nix packages Removed the import of unstable Nix packages from nixsettings.nix. --- modules/platform/nixsettings.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/platform/nixsettings.nix b/modules/platform/nixsettings.nix index eede17e..49704c1 100644 --- a/modules/platform/nixsettings.nix +++ b/modules/platform/nixsettings.nix @@ -2,16 +2,10 @@ systems = [ "x86_64-linux" ]; - perSystem = { system, ... }: { _module.args.pkgs = import inputs.nixpkgs { inherit system; config.allowUnfree = true; }; - - _module.args.pkgs-unstable = import inputs.nixpkgs-unstable { - inherit system; - config.allowUnfree = true; - }; }; }