aboutsummaryrefslogtreecommitdiff
path: root/gui/apps/web.nix
blob: 3c13bd7eb37595570e8735c15f91c44c83bd9fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, pkgs, pkgs-unstable, ... }:

{
  home = {
    packages = with pkgs-unstable; [
      zotero
      teams
      zoom-us
      tdesktop
      tigervnc
    ];
  };

  xdg.mimeApps.defaultApplications = {
    "x-scheme-handler/http"  = [ "firefox.desktop" ];
    "x-scheme-handler/https" = [ "firefox.desktop" ];
  };

  programs.firefox.enable = true;
  programs.chromium.enable = true;

  services.syncthing.enable = true;
}