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.
63 lines
1.5 KiB
Nix
63 lines
1.5 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
|
||
|
|
||
9 years ago
|
mkIf true {
|
||
9 years ago
|
|
||
9 years ago
|
# Paquets
|
||
9 years ago
|
environment.systemPackages = with pkgs; [
|
||
|
# Adminsys
|
||
8 years ago
|
cowsay # pour ansible & 4lulz
|
||
9 years ago
|
iotop
|
||
|
lm_sensors
|
||
|
lshw
|
||
|
lsof
|
||
|
ntp
|
||
|
powerline-fonts
|
||
|
powertop
|
||
|
python27Packages.ansible2
|
||
|
python27Packages.glances
|
||
8 years ago
|
sysstat # pour la commande "iostat -x -1" de monitoring d'activité disque
|
||
9 years ago
|
usbutils
|
||
9 years ago
|
|
||
9 years ago
|
# Backup
|
||
9 years ago
|
duplicity # création de sauvegarde chiffrées (GPG)
|
||
9 years ago
|
|
||
9 years ago
|
# Compression
|
||
|
lz4
|
||
9 years ago
|
lzop
|
||
9 years ago
|
|
||
9 years ago
|
# Système de fichier
|
||
9 years ago
|
## Montage de filesystem
|
||
|
curlftpfs # ftp
|
||
9 years ago
|
exfat # Pour monter les FAT avec Fuse
|
||
9 years ago
|
hubicfuse # montage hubic
|
||
9 years ago
|
ntfs3g # ntfs
|
||
8 years ago
|
samba # partages windows
|
||
8 years ago
|
squashfsTools # squashfs
|
||
9 years ago
|
sshfsFuse # ssh
|
||
|
|
||
|
## Gestion de FS
|
||
9 years ago
|
nfs-utils
|
||
9 years ago
|
|
||
|
## Exploitation FS
|
||
|
inotify-tools # être notifié lorsque le contenu d'un répertoire change
|
||
8 years ago
|
detox # The detox utility renames files to make them easier to work with.
|
||
9 years ago
|
duff # outil de recherche de fichiers en doublons
|
||
9 years ago
|
rdfind # recherche de fichiers doublons pour remplacement par hard/soft link
|
||
9 years ago
|
|
||
8 years ago
|
(mkIf profiles.isDesktopEnvironment
|
||
9 years ago
|
## Gestion de FS
|
||
|
gparted # Gestion graphique de partitions
|
||
|
)
|
||
8 years ago
|
(mkIf profiles.isDesktopEnvironment
|
||
9 years ago
|
unetbootin # création de clefs USB bootables
|
||
|
)
|
||
9 years ago
|
];
|
||
|
}
|