fix: remove some broken packages from darwin

This commit is contained in:
Ryan Yin
2024-04-09 22:33:45 +08:00
parent b8ce5573f5
commit e6f6042c3c
3 changed files with 4 additions and 3 deletions

17
home/linux/base/tools.nix Normal file
View File

@@ -0,0 +1,17 @@
{pkgs, ...}: {
# Linux Only Packages, not available on Darwin
home.packages = with pkgs; [
# misc
libnotify
wireguard-tools # manage wireguard vpn manually, via wg-quick
ventoy # create bootable usb
virt-viewer # vnc connect to VM, used by kubevirt
];
# auto mount usb drives
services = {
udiskie.enable = true;
# syncthing.enable = true;
};
}