You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
Nix
54 lines
1.7 KiB
Nix
9 years ago
|
{ config, lib, pkgs, ... }:
|
||
9 years ago
|
|
||
9 years ago
|
let
|
||
9 years ago
|
inherit (lib) mkIf mkMerge mkThenElse;
|
||
9 years ago
|
cfg = config.r6d.config-generator;
|
||
|
computers = config.r6d.computers;
|
||
|
profiles = config.r6d.profiles;
|
||
|
in
|
||
|
|
||
8 years ago
|
mkIf cfg.officeSuite {
|
||
9 years ago
|
|
||
9 years ago
|
# Paquets
|
||
9 years ago
|
environment.systemPackages = with pkgs; [
|
||
|
# Bureautique
|
||
9 years ago
|
aspell aspellDicts.fr # correction d'ortographe
|
||
|
gnumeric # tableur
|
||
9 years ago
|
#kde4.ksnapshot# réalisation de capture d'écran
|
||
9 years ago
|
|
||
8 years ago
|
# Gestion de tâche
|
||
|
taskwarrior # gestionnaire de tâches en console
|
||
|
|
||
9 years ago
|
## Cartes mentales
|
||
|
freemind
|
||
|
|
||
9 years ago
|
## Diagrammes & Schémas
|
||
|
dia # dessin & schéma technique
|
||
|
|
||
9 years ago
|
## Editeur de texte
|
||
9 years ago
|
#lyx # surcouche WISIWIM à LaTeX
|
||
|
#focuswriter # outil pour l'écriture
|
||
9 years ago
|
textadept # un éditeur de texte facile pour copier-coller graphique
|
||
9 years ago
|
#zim # outil de prise de notes, wiki de bureau
|
||
9 years ago
|
|
||
|
## Visionneuse
|
||
9 years ago
|
#kde5.okular # pdf
|
||
9 years ago
|
mcomix # livres (cbr, liste d'images), gestion d'une bibliothèque
|
||
|
pdfpc # pdf
|
||
|
qpdfview # pdf
|
||
9 years ago
|
gqview # visionneuse image & gestion basique de collection
|
||
9 years ago
|
|
||
9 years ago
|
## Convertisseurs (texte -> <autre format>)
|
||
9 years ago
|
gnuplot # générateur de graphes à partir de données numériques
|
||
|
graphviz # dot, neato : traçage de graphes (carré, rond)
|
||
9 years ago
|
#jekyll # générateur statique de site web
|
||
|
#odpdown # conversion md -> presentation ODP : https://github.com/thorstenb/odpdown
|
||
9 years ago
|
pandoc
|
||
9 years ago
|
haskellPackages.pandoc-citeproc
|
||
9 years ago
|
texlive.combined.scheme-full # distribution LaTeX
|
||
9 years ago
|
#texLive # distribution LaTeX de base
|
||
|
#texLiveBeamer # paquets et extensions pour Beamer
|
||
|
#texLiveModerncv # paquets pour la classe Modern CV
|
||
9 years ago
|
];
|
||
|
}
|