aboutsummaryrefslogtreecommitdiff
path: root/gui/apps/web.nix
blob: 2d74ed36d5fc9a33280f04c2d37ac2cd7aa06228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  home = {
    packages = with pkgs; [
      thunderbird
      tdesktop
    ];
  };

  programs.firefox.enable = true;

  services.syncthing.enable = true;
}