mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
20 lines
392 B
Nix
20 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}
|
|
'';
|
|
}
|