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