feat: rename 'common' to 'base'

This commit is contained in:
Ryan Yin
2023-06-13 00:53:33 +08:00
parent be437c3417
commit 24ef3ed105
20 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,40 @@
{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;
};
}