-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome-linux.nix
61 lines (50 loc) · 1.01 KB
/
home-linux.nix
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
# Tangled from README.org
{ lib, pkgs, ... }:
{
imports = [
./common.nix
./doc.nix
./browser.nix
./x.nix
./multimedia.nix
./emacs
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
vokoscreen
montserrat
];
services.blueman-applet.enable = true;
services.network-manager-applet.enable = true;
services.gammastep = {
enable = true;
dawnTime = "5:00-6:00";
duskTime = "17:35-19:00";
latitude = 52.5;
longitude = 13.4;
temperature = {
# https://www.eizo.com/library/basics/color_temperature_on_an_LCD_monitor/
day = 6500;
night = 2500;
};
tray = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
};
services.trayer = {
enable = true;
settings = {
align = "right";
alpha = 0;
edge = "top";
height = 20;
monitor = "primary";
tint = "0x00000000";
transparent = true;
width = 250;
widthtype = "pixel";
};
};
}