mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 18:18:59 +00:00
21 lines
408 B
Nix
21 lines
408 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
|
|
'';
|
|
}
|