mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-13 12:31:07 +01:00
16 lines
434 B
Nix
16 lines
434 B
Nix
{
|
|
services.cliphist = {
|
|
enable = true;
|
|
|
|
systemdTargets = [
|
|
"sway-session.target"
|
|
"hyprland-session.target"
|
|
];
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/cliphist.service
|
|
assertFileExists home-files/.config/systemd/user/sway-session.target.wants/cliphist.service
|
|
assertFileExists home-files/.config/systemd/user/hyprland-session.target.wants/cliphist.service
|
|
'';
|
|
}
|