Files
nix-config/home/linux/base/system-tools.nix
2024-02-17 04:36:41 +08:00

15 lines
298 B
Nix

{pkgs, ...}: {
# Linux Only Packages, not available on Darwin
home.packages = with pkgs; [
# misc
libnotify
wireguard-tools # manage wireguard vpn manually, via wg-quick
];
# auto mount usb drives
services = {
udiskie.enable = true;
# syncthing.enable = true;
};
}