allow unfree packages

This commit is contained in:
Rowan Torbitzky-Lane 2025-03-18 22:34:53 -05:00
parent 08140fef58
commit 9d4ba69e14

View File

@ -6,12 +6,9 @@
};
outputs = { nixpkgs, ... }:
let system = "x86_64-linux"; in
let system = "x86_64-linux"; pkgs = import nixpkgs { system = "${system}"; config.allowUnfree = true; }; in
{
devShells."${system}".default =
let
pkgs = nixpkgs.legacyPackages."${system}";
in
pkgs.mkShellNoCC {
buildInputs = [ pkgs.bashInteractive ];
packages = with pkgs; [