mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
23 lines
416 B
Nix
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;
|
|
}
|