2011-11-08 20:17:37 +04:00
|
|
|
# This module defines the software packages included in the "minimal"
|
|
|
|
# installation CD. It might be useful elsewhere.
|
|
|
|
|
2018-07-20 23:56:59 +03:00
|
|
|
{ lib, pkgs, ... }:
|
2010-09-25 13:32:27 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
# Include some utilities that are useful for installing or repairing
|
|
|
|
# the system.
|
|
|
|
environment.systemPackages = [
|
2018-10-27 13:16:30 +03:00
|
|
|
pkgs.w3m-nographics # needed for the manual anyway
|
2010-09-25 13:32:27 +04:00
|
|
|
pkgs.testdisk # useful for repairing boot problems
|
2018-03-22 13:13:21 +03:00
|
|
|
pkgs.ms-sys # for writing Microsoft boot sectors / MBRs
|
2015-01-07 12:51:53 +03:00
|
|
|
pkgs.efibootmgr
|
|
|
|
pkgs.efivar
|
2010-09-25 13:32:27 +04:00
|
|
|
pkgs.parted
|
2011-09-17 17:09:38 +04:00
|
|
|
pkgs.gptfdisk
|
2010-09-25 13:32:27 +04:00
|
|
|
pkgs.ddrescue
|
|
|
|
pkgs.ccrypt
|
|
|
|
pkgs.cryptsetup # needed for dm-crypt volumes
|
2017-10-28 17:58:59 +03:00
|
|
|
pkgs.mkpasswd # for generating password files
|
2010-09-25 13:32:27 +04:00
|
|
|
|
2018-10-27 13:42:03 +03:00
|
|
|
# Some text editors.
|
|
|
|
pkgs.vim
|
|
|
|
|
2010-09-25 13:32:27 +04:00
|
|
|
# Some networking tools.
|
2011-07-13 16:18:23 +04:00
|
|
|
pkgs.fuse
|
2017-08-19 19:50:53 +03:00
|
|
|
pkgs.fuse3
|
2016-09-18 18:43:58 +03:00
|
|
|
pkgs.sshfs-fuse
|
2010-09-25 13:32:27 +04:00
|
|
|
pkgs.socat
|
|
|
|
pkgs.screen
|
|
|
|
|
|
|
|
# Hardware-related tools.
|
|
|
|
pkgs.sdparm
|
|
|
|
pkgs.hdparm
|
2011-08-02 10:53:09 +04:00
|
|
|
pkgs.smartmontools # for diagnosing hard disks
|
2015-04-19 23:14:57 +03:00
|
|
|
pkgs.pciutils
|
|
|
|
pkgs.usbutils
|
2010-09-25 13:32:27 +04:00
|
|
|
|
|
|
|
# Tools to create / manipulate filesystems.
|
|
|
|
pkgs.ntfsprogs # for resizing NTFS partitions
|
|
|
|
pkgs.dosfstools
|
2015-04-20 23:06:17 +03:00
|
|
|
pkgs.xfsprogs.bin
|
2010-09-25 13:32:27 +04:00
|
|
|
pkgs.jfsutils
|
2014-03-26 00:39:10 +04:00
|
|
|
pkgs.f2fs-tools
|
2010-09-25 13:32:27 +04:00
|
|
|
|
|
|
|
# Some compression/archiver tools.
|
|
|
|
pkgs.unzip
|
|
|
|
pkgs.zip
|
|
|
|
];
|
2012-03-09 18:37:58 +04:00
|
|
|
|
|
|
|
# Include support for various filesystems.
|
2018-11-27 01:51:18 +03:00
|
|
|
boot.supportedFilesystems = [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "zfs" "ntfs" "cifs" ];
|
2012-03-09 18:37:58 +04:00
|
|
|
|
2015-04-28 18:15:02 +03:00
|
|
|
# Configure host id for ZFS to work
|
2015-11-21 17:03:16 +03:00
|
|
|
networking.hostId = lib.mkDefault "8425e349";
|
2010-09-25 13:32:27 +04:00
|
|
|
}
|