8 lines
125 B
Nix
8 lines
125 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
let
|
||
|
unstable = (import ../unstable.nix config);
|
||
|
in {
|
||
|
environment.systemPackages = [ unstable.mesa ];
|
||
|
}
|