45 lines
680 B
Nix
45 lines
680 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# --- Bureautique
|
|
libreoffice-fresh
|
|
zotero
|
|
pandoc
|
|
# --- Communication
|
|
signal-desktop
|
|
mattermost-desktop
|
|
protonmail-bridge
|
|
# --- Multimédia
|
|
gimp
|
|
inkscape
|
|
nomacs
|
|
imagemagick
|
|
librsvg
|
|
# --- Maths
|
|
(octave.withPackages (
|
|
ps: with ps; [
|
|
image
|
|
statistics
|
|
symbolic
|
|
]
|
|
))
|
|
gnuplot
|
|
# --- Fichiers
|
|
nautilus
|
|
# --- Others
|
|
hyfetch
|
|
fastfetch
|
|
pkg-config
|
|
brightnessctl
|
|
mako
|
|
cliphist
|
|
grim
|
|
slurp
|
|
mullvad-vpn
|
|
rofi
|
|
# --- Themes
|
|
nwg-look
|
|
papirus-icon-theme
|
|
bibata-cursors
|
|
];
|
|
}
|