mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 18:19:09 +00:00
15 lines
243 B
Nix
15 lines
243 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.openrefine = {
|
||
|
enable = true;
|
||
|
package = pkgs.openrefine;
|
||
|
};
|
||
|
|
||
|
test.stubs.openrefine = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/systemd/user/openrefine.service
|
||
|
'';
|
||
|
}
|