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

32 lines
396 B
Nix
Raw Normal View History

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