33 lines
417 B
Nix
33 lines
417 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
# Work-specific programs
|
|
teams-for-linux
|
|
|
|
# Coding tools
|
|
zed-editor
|
|
|
|
# Creative tools
|
|
blender
|
|
inkscape
|
|
krita
|
|
|
|
# Productivity tools
|
|
libreoffice-qt
|
|
hunspell
|
|
hunspellDicts.en_CA
|
|
|
|
# System tools
|
|
gparted
|
|
|
|
# Communication tools
|
|
discord
|
|
|
|
# Games
|
|
atlauncher
|
|
steam
|
|
|
|
# Note-taking
|
|
obsidian
|
|
];
|
|
}
|