mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-19 07:43:44 +01:00
41 lines
651 B
Nix
41 lines
651 B
Nix
{pkgs, config, ...}:
|
|
|
|
|
|
{
|
|
# Linux Only Packages, not available on Darwin
|
|
home.packages = with pkgs; [
|
|
btop # replacement of htop/nmon
|
|
htop
|
|
iotop
|
|
nmon
|
|
|
|
## networking tools
|
|
wireguard-tools # manage wireguard vpn manually, via wg-quick
|
|
iftop
|
|
|
|
# misc
|
|
libnotify
|
|
|
|
# system call monitoring
|
|
strace
|
|
ltrace # library call monitoring
|
|
lsof
|
|
|
|
# system tools
|
|
ethtool
|
|
sysstat
|
|
lm_sensors # for `sensors` command
|
|
cifs-utils # for mounting windows shares
|
|
];
|
|
|
|
# auto mount usb drives
|
|
services = {
|
|
udiskie.enable = true;
|
|
};
|
|
|
|
services = {
|
|
# syncthing.enable = true;
|
|
};
|
|
|
|
}
|