nix-configurations/home/features/services/netbird.nix

15 lines
254 B
Nix
Raw Normal View History

2023-03-14 12:22:16 +00:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.services.netbird;
in {
options.features.services.netbird.enable = mkEnableOption "install netbird";
config = mkIf cfg.enable {
home.packages = with pkgs; [ netbird-ui ];
};
}