summary refs log tree commit diff stats
path: root/modules/user-interface.nix
blob: ef05abbf5760b2003b5972422068dbd5402f134b (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
{ config, pkgs, ... }:

{ # programs.browserpass.enable = true;
  programs.info.enable = true;

  environment.systemPackages = with pkgs; [
    firefox-bin

    vdirsyncer
    khal

    offlineimap
    isync
    mu
    msmtp

    mosh
    aspell
    aspellDicts.en

    st

    trash-cli
  ];

  nixpkgs.config.st = {
    patches = [ ../config/st-scrollback-0.7.diff ];
    conf = builtins.readFile ../config/st-config.h;
  };

  services.devmon.enable = true;

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

  services.urxvtd = {
    enable = true;
  };
}