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

{
  home = {
    packages = with pkgs-unstable; [
      tdesktop

      zotero

      teams

      pkgs.tigervnc
      pkgs.remmina
    ];
  };

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

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

  services.syncthing.enable = true;
}