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