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

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

  programs.firefox.enable = true;

  services.syncthing.enable = true;
}