|
|
|
@ -7,7 +7,7 @@ let
|
|
|
|
|
profiles = config.r6d.profiles;
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
mkIf profiles.isDesktop {
|
|
|
|
|
mkIf true {
|
|
|
|
|
|
|
|
|
|
# Paquets
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
@ -23,9 +23,6 @@ mkIf profiles.isDesktop {
|
|
|
|
|
python27Packages.glances
|
|
|
|
|
usbutils
|
|
|
|
|
|
|
|
|
|
# DNS
|
|
|
|
|
unbound
|
|
|
|
|
|
|
|
|
|
# Compression
|
|
|
|
|
lz4
|
|
|
|
|
lzop
|
|
|
|
@ -37,12 +34,18 @@ mkIf profiles.isDesktop {
|
|
|
|
|
sshfsFuse # ssh
|
|
|
|
|
|
|
|
|
|
## Gestion de FS
|
|
|
|
|
gparted
|
|
|
|
|
nfs-utils
|
|
|
|
|
|
|
|
|
|
## Exploitation FS
|
|
|
|
|
inotify-tools # être notifié lorsque le contenu d'un répertoire change
|
|
|
|
|
rdfind # recherche de fichiers doublons pour remplacement par hard/soft link
|
|
|
|
|
];
|
|
|
|
|
} // mkIf profiles.isDesktop {
|
|
|
|
|
|
|
|
|
|
# Paquets
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
## Gestion de FS
|
|
|
|
|
gparted # Gestion graphique de partitions
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
unetbootin # création de clefs USB bootables
|
|
|
|
|