mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
21 lines
392 B
Nix
21 lines
392 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
home.stateVersion = "21.11";
|
||
|
|
||
|
services.clipman = {
|
||
|
enable = true;
|
||
|
systemdTarget = "sway-session.target";
|
||
|
};
|
||
|
|
||
|
test.stubs = {
|
||
|
clipman = { };
|
||
|
wl-clipboard = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/clipman.service)
|
||
|
assertFileContent "$serviceFile" ${./clipman-sway-session-target.service}
|
||
|
'';
|
||
|
}
|