13 lines
152 B
Nix
13 lines
152 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
firefox
|
|
chromium
|
|
|
|
thunderbird
|
|
|
|
element-desktop
|
|
tdesktop
|
|
];
|
|
}
|