refactor and add htop
This commit is contained in:
parent
3e8779b6ea
commit
61829949f7
51
iso.nix
51
iso.nix
|
@ -20,19 +20,20 @@
|
||||||
networking.hostId = lib.mkDefault "8425e349";
|
networking.hostId = lib.mkDefault "8425e349";
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pkgs.w3m-nographics # needed for the manual anyway
|
w3m-nographics # needed for the manual anyway
|
||||||
pkgs.testdisk # useful for repairing boot problems
|
testdisk # useful for repairing boot problems
|
||||||
pkgs.ms-sys # for writing Microsoft boot sectors / MBRs
|
ms-sys # for writing Microsoft boot sectors / MBRs
|
||||||
pkgs.efibootmgr
|
efibootmgr
|
||||||
pkgs.efivar
|
efivar
|
||||||
pkgs.parted
|
htop
|
||||||
pkgs.gptfdisk
|
parted
|
||||||
pkgs.ddrescue
|
gptfdisk
|
||||||
pkgs.ccrypt
|
ddrescue
|
||||||
pkgs.cryptsetup # needed for dm-crypt volumes
|
ccrypt
|
||||||
|
cryptsetup # needed for dm-crypt volumes
|
||||||
|
|
||||||
# Some text editors.
|
# Some text editors.
|
||||||
(pkgs.vim.customize {
|
(vim.customize {
|
||||||
name = "vim";
|
name = "vim";
|
||||||
vimrcConfig.customRC = ''
|
vimrcConfig.customRC = ''
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
@ -48,24 +49,24 @@
|
||||||
})
|
})
|
||||||
|
|
||||||
# Some networking tools.
|
# Some networking tools.
|
||||||
pkgs.fuse
|
fuse
|
||||||
pkgs.fuse3
|
fuse3
|
||||||
pkgs.sshfs-fuse
|
sshfs-fuse
|
||||||
pkgs.socat
|
socat
|
||||||
pkgs.screen
|
screen
|
||||||
pkgs.tcpdump
|
tcpdump
|
||||||
|
|
||||||
# Hardware-related tools.
|
# Hardware-related tools.
|
||||||
pkgs.sdparm
|
sdparm
|
||||||
pkgs.hdparm
|
hdparm
|
||||||
pkgs.smartmontools # for diagnosing hard disks
|
smartmontools # for diagnosing hard disks
|
||||||
pkgs.pciutils
|
pciutils
|
||||||
pkgs.usbutils
|
usbutils
|
||||||
pkgs.nvme-cli
|
nvme-cli
|
||||||
|
|
||||||
# Some compression/archiver tools.
|
# Some compression/archiver tools.
|
||||||
pkgs.unzip
|
unzip
|
||||||
pkgs.zip
|
zip
|
||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
Loading…
Reference in New Issue