1
1
Fork 0
nixos/options/custom/services/xembed-sni-proxy.nix

15 lines
330 B
Nix
Raw Normal View History

{ config, lib, ... }:
with lib;
let
cfg = config.custom.services.xembed-sni-proxy;
in
{
options.custom.services.xembed-sni-proxy.enable = mkOption { default = false; };
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
services.xembed-sni-proxy.enable = true; # Support XEmbed tray icons
};
}