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.
35 lines
1021 B
Nix
35 lines
1021 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkIf mkMerge mkThenElse;
|
|
cfg = config.r6d.config-generator;
|
|
computers = config.r6d.computers;
|
|
profiles = config.r6d.profiles;
|
|
in
|
|
|
|
mkIf (cfg.developpement && cfg.graphical) {
|
|
|
|
# Paquets
|
|
environment.systemPackages = with pkgs; [
|
|
# Base de données
|
|
pgadmin # interface d'administration de postgres
|
|
sqlitebrowser # interface d'administration de sqlite
|
|
|
|
# Documentation
|
|
#zeal # consulter la documentation hors ligne
|
|
|
|
# Gestion des sources
|
|
#gitg # interface pour utiliser git (historique, commit)
|
|
gitstats # génère un site web statique avec des statistiques
|
|
gitAndTools.gitFull # pour gitk
|
|
git-cola # interface pour utiliser git (historique, commit)
|
|
|
|
## Visualisation & outils de diff
|
|
#gource # visualisation en mouvement de l'historique git
|
|
meld # outil de comparaison graphique
|
|
|
|
# Editeur texte
|
|
atom
|
|
];
|
|
}
|