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

41 lines
622 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
...
2025-01-13 19:53:42 +00:00
}: {
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-21 06:37:50 +00:00
# Setup foot as our terminal emulator
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
font = "JetBrainsMono NF:size=8";
dpi-aware = "yes";
};
};
};
2025-01-09 17:03:03 +00:00
}