mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
14 lines
391 B
Nix
14 lines
391 B
Nix
{
|
|
services.wl-clip-persist = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
servicePath=home-files/.config/systemd/user
|
|
|
|
assertFileExists $servicePath/wl-clip-persist.service
|
|
assertFileRegex $servicePath/wl-clip-persist.service "Description=Wayland clipboard persistence daemon"
|
|
assertFileRegex $servicePath/wl-clip-persist.service "ExecStart=.* --clipboard regular"
|
|
'';
|
|
}
|