summary refs log tree commit diff stats
path: root/system/settings/user-interface.nix
blob: 2484b364e91f8a0097240934e2beb37e5894b81c (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{ config, pkgs, lib, makeDesktopItem, ... }:

{ documentation.info.enable = true;
  nixpkgs.config.firefox.enableOfficialBranding = true;

  environment.pathsToLink = [ "/share/zsh" ];

  environment.systemPackages = with pkgs; [
    aria2
    firefox
    pcmanfm

    epdfview
    geeqie

    cmus

    fish # for emacs-fish-completion

    lxappearance
    lxrandr
    lxtask

    weechat

    mpv

    aspell
    aspellDicts.en

    cifs-utils
    hexchat
    signal-desktop
    wire-desktop

    trash-cli
  ];

  nixpkgs.config.allowUnfree = true;

  services.compton = {
    enable = true;
    backend = "glx";
    vSync = true;
  };

  services.devmon.enable = true;

  systemd.user.services.trash-clean = {
    path = with pkgs; [ trash-cli ];
    description = "Remove old files from FreeDesktop.org trash";

    serviceConfig = {
      Type = "oneshot";
    };
    script = "trash-empty 30";
  };
  systemd.user.timers.trash-clean = {
    wantedBy = [ "default.target" ];
    timerConfig = {
      OnCalendar = "weekly";
      Persistent = true;
    };
  };

  environment.variables = {
    # This is required so that GTK applications launched from Emacs
    # get properly themed:
    GTK_DATA_PREFIX = "${config.system.path}";
  };

  services.redshift = {
    enable = true;
    temperature = {
      day = 6500;
      night = 3600;
    };
  };

  programs.ssh.startAgent = true;

  programs.dconf.enable = true;
  programs.seahorse.enable = true;
  services.gnome3 = {
    gnome-keyring.enable = true;
    at-spi2-core.enable = true;
  };

  imports = [
    ./services/xserver.nix
  ];
}