aboutsummaryrefslogtreecommitdiff
path: root/gui/default.nix
blob: d83b10f3b3535fa943fa76c7c61f3f93ae41a437 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ pkgs, ... }:

{
  home = {
    packages = with pkgs; [
    # file viewers
      sxiv
      mpv
      paraview
      libreoffice
    # communication
      thunderbird
      tdesktop
    # UI dev utilities (CLI utilities are added in project specific nix-shells)
      zeal
      hotspot
      qcachegrind
      gitg
    ];

    file.".config/user-dirs.dirs".text = ''
      XDG_TEMPLATES_DIR="$HOME/"
      XDG_DESKTOP_DIR="$HOME/"
      XDG_DOWNLOADS_DIR="$HOME/downloads/"
    '';
  };

  imports = [
  # desktop environment
    ./xmonad.nix
    ./rofi.nix
    ./gtk.nix
  # terminals
    ./kitty.nix
    ./urxvt.nix
  # tools
    ./vim.nix
    ./pcmanfm.nix
  # file viewers
    ./zathura.nix
  ];

  services.syncthing.enable = true;

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