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.
29 lines
460 B
Nix
29 lines
460 B
Nix
9 years ago
|
{ config, libs, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Clients Internet
|
||
9 years ago
|
|
||
|
## Navigateur & Réseaux sociaux
|
||
9 years ago
|
chromium
|
||
|
firefox
|
||
9 years ago
|
python27Packages.turses # client twitter en ncurse
|
||
|
|
||
|
## Mail & Discussion (texte, audio)
|
||
|
clawsMail
|
||
9 years ago
|
kde5.quasselClient
|
||
|
mumble
|
||
9 years ago
|
mutt
|
||
9 years ago
|
pidgin
|
||
|
thunderbird
|
||
9 years ago
|
|
||
|
# Transfert de fichier
|
||
|
filezilla
|
||
|
transmission_gtk
|
||
|
transmission_remote_gtk
|
||
9 years ago
|
];
|
||
|
}
|