blob: 511ba6b9038dbbab5dedfc2a573981a3a6760e36 (
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
|
{ config, lib, pkgs, ... }:
let cfg = config.profiles.research;
in
{
imports = [ ../../modules/programs/nixpkgs ];
options.profiles.research = {
enable = lib.mkEnableOption
"A profile that enables the system to be used for researching various topics.";
};
config = lib.mkIf cfg.enable {
programs.zathura = {
enable = true;
options = {
adjust-open = "width";
recolor = true;
default-bg = "#cbc0ab";
default-fg = "#151515";
statusbar-bg = "#cbc0ab";
statusbar-fg = "#151515";
inputbar-bg = "#cbc0ab";
inputbar-fg = "#151515";
index-bg = "#cbc0ab";
index-fg = "#151515";
index-active-bg = "#cbc0ab";
index-active-fg = "#4f5058";
highlight-color = "#d4ae80";
highlight-active-color = "#8197bf";
notification-bg = "#cbc0ab";
notification-fg = "#151515";
notification-warning-bg = "#4f5058";
notification-warning-fg = "#dcb66a";
notification-error-bg = "#4f5058";
notification-error-fg = "#cf6a4c";
render-loading = true;
render-loading-fg = "#cbc0ab";
render-loading-bg = "#151515";
recolor-lightcolor = "#cbc0ab";
recolor-darkcolor = "#151515";
};
};
home.packages = [
pkgs.texlive.combined.scheme-small
pkgs.pandoc
pkgs.obsidian
pkgs.google-chrome
];
nixpkgs.allowedUnfree = [ "obsidian" "google-chrome" ];
};
}
|