nixos-configuration/roles/subroles/internet.nix

13 lines
152 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
firefox
chromium
thunderbird
2020-10-29 08:37:51 +01:00
element-desktop
2020-05-30 14:07:02 +02:00
tdesktop
];
}