1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00

generic-linux-gpu: add a news entry

This commit is contained in:
Jure Varlec 2025-10-26 08:33:08 +01:00 committed by Austin Horstman
parent 193e44d316
commit 77b51dbb9f

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
time = "2025-10-26T07:19:48+00:00";
condition = pkgs.stdenv.hostPlatform.isLinux;
message = ''
A new module is available: `targets.genericLinux.gpu`
This module provides integration of GPU drivers for non-NixOS systems. It is a
simpler alternative to the existing `targets.genericLinux.nixGL` module. See the
Home Manager user manual for more information.
'';
}