23 lines
358 B
Nix
23 lines
358 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# Communication
|
|
discord
|
|
slack
|
|
mattermost-desktop
|
|
# Productivity & Office
|
|
bitwarden-desktop
|
|
tutanota-desktop
|
|
anki-bin
|
|
onlyoffice-bin
|
|
# Cloud
|
|
nextcloud-client
|
|
# Browsers
|
|
ungoogled-chromium
|
|
# Utilities
|
|
galculator
|
|
gedit
|
|
eddie
|
|
];
|
|
}
|