machines/configurations: add TODO about nixpkgs.config.allowUnfreePackages
Some checks are pending
/ Build Nix targets (push) Waiting to run

This commit is contained in:
Felix Buehler 2026-01-27 21:37:31 +01:00
parent 943e4c84d9
commit bcb94ea392

View file

@ -13,6 +13,7 @@ let
overlay-unstable = final: _prev: {
unstable = import nixpkgs-unstable {
inherit (final.stdenv.hostPlatform) system;
# TODO 26.05: replace with nixpkgs.config.allowUnfreePackages
config.allowUnfree = true;
};
};
@ -28,6 +29,7 @@ let
(
{ pkgs, ... }:
{
# TODO 26.05: replace with nixpkgs.config.allowUnfreePackages
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
overlay-unstable