Files
nixos-template-base/public/app-adminsys.nix

45 lines
675 B
Nix
Raw Normal View History

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