dodanie MS Teams (usunąć po studiach)

This commit is contained in:
2025-10-30 10:09:28 +01:00
parent b9f8bbfb9c
commit 2a11df7fcc

View File

@@ -24,6 +24,10 @@ let
url = "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/glance.png";
sha256 = "sha256-xyFlmPpt+DABoGX5oBqj/aQVdxtmNflat9Jb2BE7SOY=";
};
microsoftTeamsIcon = pkgs.fetchurl {
url = "https://i.pinimg.com/236x/e6/b6/28/e6b628706696320cd0ede93f7053abd8.jpg";
sha256 = "sha256-bZVmoWHeG8rycS8lj7LQaxFggXINjUx/7NWKPVhPTFw=";
};
in
{
xdg = {
@@ -99,6 +103,14 @@ in
terminal = false;
type = "Application";
};
"microsoftTeams" = {
name = "Microsoft Teams";
genericName = "Microsoft Teams";
exec = "chromium --profile-directory=Default --app=https://teams.microsoft.com/v2/";
icon = "${microsoftTeamsIcon}";
terminal = false;
type = "Application";
};
};
};
}