mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
25 lines
436 B
Nix
25 lines
436 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
services.plover = {
|
|
enable = true;
|
|
package = pkgs.plover-dev;
|
|
settings = {
|
|
"Output Configuration" = {
|
|
undo_levels = 100;
|
|
};
|
|
|
|
"Stroke Display" = {
|
|
show = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
test.stubs.plover-dev = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/plover/plover.cfg
|
|
assertFileExists home-files/.config/systemd/user/plover.service
|
|
'';
|
|
}
|