Refactor package management into modular Nix configuration

This commit is contained in:
2025-09-25 18:25:01 +02:00
parent 244567f465
commit 781cb53032
14 changed files with 181 additions and 118 deletions

View File

@@ -0,0 +1,22 @@
{ 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
];
}