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.
25 lines
347 B
Nix
25 lines
347 B
Nix
9 years ago
|
{ config, libs, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Adminsys
|
||
|
gparted
|
||
|
iotop
|
||
|
lm_sensors
|
||
|
lshw
|
||
|
lsof
|
||
|
nfs-utils
|
||
|
ntfs3g
|
||
|
ntp
|
||
|
powerline-fonts
|
||
|
powertop
|
||
|
python27Packages.docker_compose
|
||
|
python27Packages.ansible2
|
||
|
python27Packages.glances
|
||
|
usbutils
|
||
|
];
|
||
|
}
|