11.stylix/modules/blender/testbeds/blender.nix
Louis Dalibard a057acc112
blender: init (#1147)
Link: https://github.com/nix-community/stylix/pull/1147

Reviewed-by: Daniel Thwaites <danth@danth.me>
Reviewed-by: awwpotato <awwpotato@voidq.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-06-04 18:10:45 +02:00

12 lines
181 B
Nix

{ pkgs, ... }:
let
package = pkgs.blender;
in
{
stylix.testbed.ui.application = {
name = "blender";
inherit package;
};
environment.systemPackages = [ package ];
}