mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
19 lines
379 B
Nix
19 lines
379 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.parcellite = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage {
|
||
|
name = "parcellite";
|
||
|
outPath = "@parcellite@";
|
||
|
};
|
||
|
extraOptions = [ "--no-icon" ];
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
"home-files/.config/systemd/user/parcellite.service" \
|
||
|
${./parcellite-expected.service}
|
||
|
'';
|
||
|
}
|