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.
58 lines
1.3 KiB
Nix
58 lines
1.3 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
|
# TODO: ménage
|
||
9 years ago
|
mkIf profiles.isDesktop {
|
||
9 years ago
|
|
||
9 years ago
|
# Paquets
|
||
9 years ago
|
environment.systemPackages = with pkgs; [
|
||
9 years ago
|
# Clients Internet
|
||
9 years ago
|
|
||
9 years ago
|
## Navigateur
|
||
9 years ago
|
chromium
|
||
|
firefox
|
||
9 years ago
|
|
||
|
## Réseaux sociaux
|
||
8 years ago
|
#python27Packages.turses # client twitter en ncurse
|
||
9 years ago
|
python27Packages.rainbowstream # client twitter en console
|
||
9 years ago
|
rtv # client reddit en console
|
||
9 years ago
|
|
||
|
## Mail & Discussion (texte, audio)
|
||
|
clawsMail
|
||
9 years ago
|
hexchat
|
||
8 years ago
|
quassel
|
||
9 years ago
|
quasselClient
|
||
9 years ago
|
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
|
];
|
||
8 years ago
|
|
||
|
nixpkgs.config.packageOverrides = pkgs: {
|
||
|
clawsMail = pkgs.clawsMail.override {
|
||
8 years ago
|
enablePluginFancy = false; # nécessite wekitgtk qui est troué
|
||
8 years ago
|
enablePluginPdf = true;
|
||
|
enablePluginRavatar = true;
|
||
|
enablePluginSmime = true;
|
||
|
enablePluginVcalendar = true;
|
||
|
enableSpellcheck = true;
|
||
|
};
|
||
|
mumble = pkgs.mumble.override { pulseSupport = true; };
|
||
|
};
|
||
8 years ago
|
|
||
|
#nixpkgs.config.permittedInsecurePackages = [
|
||
|
# "webkitgtk-2.4.11" # pour que le plugin fancy de claws-mail fonctionne
|
||
|
#];
|
||
|
|
||
9 years ago
|
}
|