Added barrier

This commit is contained in:
2024-03-26 19:30:12 +01:00
parent be4540cc58
commit 7504fa4f48
4 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, hostName, ... }:
{
services.barrier.client =
if hostName == "xv-desktop"
then {
enable = true;
}
else { enable = false; };
home.packages = if hostName == "xv-laptop" then with pkgs; [
barrier
] else [];
}