1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/services/gromit-mpx/basic-configuration.nix

24 lines
416 B
Nix
Raw Normal View History

2019-02-24 20:33:56 +01:00
{ 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;
}