2016-07-29 12:41:37 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2016-05-08 18:58:12 +02:00
|
|
|
|
2016-07-29 12:41:37 +02:00
|
|
|
let
|
2016-08-12 12:46:36 +02:00
|
|
|
inherit (lib) mkIf mkMerge mkThenElse;
|
2016-07-29 12:41:37 +02:00
|
|
|
cfg = config.r6d.config-generator;
|
|
|
|
|
computers = config.r6d.computers;
|
|
|
|
|
profiles = config.r6d.profiles;
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
mkIf profiles.isDesktop {
|
2016-05-08 18:58:12 +02:00
|
|
|
|
2016-08-12 12:46:36 +02:00
|
|
|
# Paquets
|
2016-05-08 18:58:12 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
# Adminsys
|
|
|
|
|
iotop
|
|
|
|
|
lm_sensors
|
|
|
|
|
lshw
|
|
|
|
|
lsof
|
|
|
|
|
ntp
|
|
|
|
|
powerline-fonts
|
|
|
|
|
powertop
|
|
|
|
|
python27Packages.ansible2
|
|
|
|
|
python27Packages.glances
|
|
|
|
|
usbutils
|
2016-05-17 17:06:11 +02:00
|
|
|
|
2016-06-13 01:38:10 +02:00
|
|
|
# DNS
|
|
|
|
|
unbound
|
|
|
|
|
|
|
|
|
|
# Compression
|
|
|
|
|
lz4
|
2016-07-09 18:40:12 +02:00
|
|
|
lzop
|
2016-06-13 01:38:10 +02:00
|
|
|
|
2016-07-11 14:26:06 +02:00
|
|
|
# Système de fichier
|
2016-05-17 17:06:11 +02:00
|
|
|
curlftpfs
|
|
|
|
|
gparted
|
2016-06-13 01:38:10 +02:00
|
|
|
inotify-tools
|
2016-05-17 17:06:11 +02:00
|
|
|
nfs-utils
|
|
|
|
|
ntfs3g
|
2016-07-09 18:40:12 +02:00
|
|
|
sshfsFuse
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
unetbootin # création de clefs USB bootables
|
2016-05-08 18:58:12 +02:00
|
|
|
];
|
|
|
|
|
}
|