1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00

clipse: add module (#5777)

clipse is a configurable, TUI-based clipboard manager application written in Go with minimal dependency. Though the app is optimized for a Linux OS using a dedicated window manager, clipse can also be used on any Unix-based system.
This commit is contained in:
DSOverlord 2025-02-22 17:40:15 +02:00 committed by GitHub
parent 34d524f3ed
commit a51e94e51c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 132 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ ... }:
{
services.clipse = {
enable = true;
systemdTarget = "sway-session.target";
};
test.stubs = {
clipse = { };
wl-clipboard = { };
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/clipse.service
'';
}