nixos-config/packages/pkg-misc.nix

14 lines
166 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ pkgs, pkgs-stable, ... }:
2024-08-03 17:34:34 +02:00
{
environment.systemPackages =
(with pkgs; [
2024-08-07 11:21:16 +02:00
google-chrome
2024-08-03 17:34:34 +02:00
])
++
(with pkgs-stable; [
2024-08-03 20:05:32 +02:00
teams-for-linux
2024-08-03 17:34:34 +02:00
]);
}