aboutsummaryrefslogtreecommitdiff
path: root/gui/apps/web.nix
blob: 59937c8e5f9ba1efccfbcd64f906d76dcfd9f894 (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; [
      tdesktop
      tigervnc
    ]) ++ (with pkgs-unstable; [
      zotero
      teams
    ]);
  };

  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;
}