23 lines
312 B
Nix
23 lines
312 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# Work-specific programs
|
|
teams-for-linux
|
|
|
|
# Creative tools
|
|
blender
|
|
inkscape
|
|
krita
|
|
|
|
# Productivity tools
|
|
libreoffice-qt
|
|
hunspell
|
|
hunspellDicts.en_CA
|
|
|
|
# System tools
|
|
gparted
|
|
|
|
# Communication tools
|
|
discord
|
|
];
|
|
}
|