16 lines
248 B
Nix
16 lines
248 B
Nix
|
{ 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 [];
|
||
|
}
|