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

{
  home = {
    packages = (with pkgs; [
      thunderbird
      tdesktop
    ]) ++ (with config.custom.nixpkgs-unstable; [
      zotero
    ]);
  };

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

  programs.firefox.enable = true;

  services.syncthing.enable = true;
}