1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

services/barrier: drop module

Upstream package removed and unmaintained project. Recommended to
replace with maintained alternatives such as `deskflow` and `input-leap`

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-10-05 14:12:17 -05:00
parent b52ece2bb6
commit 06e268d66b
4 changed files with 4 additions and 114 deletions

View file

@ -1,13 +0,0 @@
{
services.barrier.client = {
enable = true;
server = "testServer";
};
nmt.script = ''
clientServiceFile=home-files/.config/systemd/user/barrierc.service
assertFileExists $clientServiceFile
assertFileRegex $clientServiceFile 'ExecStart=.*/bin/barrierc -f testServer'
'';
}

View file

@ -1,5 +0,0 @@
{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
barrier-basic-configuration = ./basic-configuration.nix;
}