16 lines
249 B
Nix
16 lines
249 B
Nix
{ pkgs, hostName, ... }:
|
|
|
|
{
|
|
services.barrier.client =
|
|
if hostName == "xv-desktop"
|
|
then {
|
|
enable = false;
|
|
}
|
|
else { enable = true; };
|
|
|
|
|
|
home.packages = if hostName == "xv-desktop" then with pkgs; [
|
|
barrier
|
|
] else [];
|
|
}
|