System/home-manager/modules/programs/desktop.nix

29 lines
394 B
Nix
Raw Normal View History

2025-01-09 12:03:03 -05:00
{
config,
lib,
pkgs,
inputs',
2025-01-09 12:03:03 -05:00
...
2025-01-13 14:53:42 -05:00
}: {
2025-01-09 12:03:03 -05:00
home.packages = with pkgs; [
2025-01-10 09:10:00 -05:00
# Communications
webcord-vencord
protonmail-desktop
2025-01-10 09:10:00 -05:00
signal-desktop
caprine
# Media
spotify
inputs'.nixpkgs-unstable.legacyPackages.ente-web
calibre
2025-01-10 09:10:00 -05:00
# Utility
protonvpn-gui
2025-01-09 12:03:03 -05:00
];
services.syncthing = {
enable = true;
tray = {
enable = true;
};
};
}