gedit: add testbed

This commit is contained in:
Daniel Thwaites 2024-11-08 18:28:11 +00:00
parent 7cd8165fc1
commit 7fcf77f1a9
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

13
modules/gedit/testbed.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
let package = pkgs.gedit;
in {
stylix.testbed.application = {
enable = true;
name = "org.gnome.gedit";
inherit package;
};
environment.systemPackages = [ package ];
}