Files
nix-config/modules/desktop/teams-for-linux.nix
Armel van Ravels 00a8168ef5 add den pattern
2026-08-14 15:08:14 +02:00

13 lines
275 B
Nix

{ config, lib, pkgs, ... }:
let
dirModules = config.features.modules.desktop or { };
in
{
config = lib.mkIf ((dirModules.enable or false) && (dirModules.teams-for-linux.enable or true)) {
environment.systemPackages = with pkgs; [
teams-for-linux
];
};
}