1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 19:38:32 +02:00
home-manager/tests/modules/services/gromit-mpx/basic-configuration.nix
2021-12-11 19:17:59 +01:00

24 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;
}