Files
nixos/home/lukas/packages.nix
2025-06-26 14:39:26 +02:00

38 lines
513 B
Nix

{ pkgs, ... }:
{
fonts.fontconfig.enable = true;
home.packages = [
pkgs.thunderbird
pkgs.nextcloud-client
pkgs.keepassxc
pkgs.telegram-desktop
pkgs.element-desktop
pkgs.tree
pkgs.htop
pkgs.neovim
pkgs.wget
pkgs.unzip
pkgs.nerd-fonts.fira-code
pkgs.fira-code
pkgs.meslo-lgs-nf
pkgs.eza
pkgs.bat
pkgs.ripgrep
pkgs.binutils
pkgs.gcc
pkgs.nil
(pkgs.aspellWithDicts
(dicts: with dicts; [ de en en-computers ]))
];
}