From 0b4382253f3f5dc6dc5ef9633b897a969cb898c0 Mon Sep 17 00:00:00 2001 From: Zoty Date: Tue, 23 Jun 2026 14:46:28 -0300 Subject: [PATCH] fix allowUnfree for unstable packages --- modules/dev.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/dev.nix b/modules/dev.nix index cf47063..32b072d 100644 --- a/modules/dev.nix +++ b/modules/dev.nix @@ -4,7 +4,10 @@ let in { den.aspects.dev.nixos = { pkgs, ... }: let - pkgs-unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system}; + pkgs-unstable = import inputs.nixpkgs-unstable { + system = pkgs.stdenv.hostPlatform.system; + config.allowUnfree = true; + }; in { environment.systemPackages = with pkgs-unstable; [ # CLI utilities