depot/third_party/home-manager/tests/modules/services/gromit-mpx/basic-configuration.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

23 lines
416 B
Nix

{ config, pkgs, ... }:
{
services.gromit-mpx = {
enable = true;
package = config.lib.test.mkStubPackage { };
tools = [
{
device = "default";
type = "pen";
size = 5;
}
{
device = "default";
type = "eraser";
size = 75;
modifiers = [ "3" ];
}
];
};
nmt.script = import ./nmt-script.nix ./basic-configuration.cfg;
}