tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
feat: alacritty
nel.pet
3 months ago
16aeb288
834f2479
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+81
2 changed files
expand all
collapse all
unified
split
modules
home
alacritty.nix
default.nix
+80
modules/home/alacritty.nix
···
1
1
+
{ wrappers, ... }: {
2
2
+
config.home.packages = [(wrappers.alacritty {
3
3
+
settings = {
4
4
+
colors.primary = {
5
5
+
background = "#1e1e2e";
6
6
+
foreground = "#cdd6f4";
7
7
+
dim_foreground = "#7f849c";
8
8
+
bright_foreground = "#cdd6f4";
9
9
+
};
10
10
+
11
11
+
colors.cursor = {
12
12
+
text = "#1e1e2e";
13
13
+
cursor = "#f5e0dc";
14
14
+
};
15
15
+
16
16
+
colors.vi_mode_cursor = {
17
17
+
text = "#1e1e2e";
18
18
+
cursor = "#b4befe";
19
19
+
};
20
20
+
21
21
+
colors.search.matches = {
22
22
+
foreground = "#1e1e2e";
23
23
+
background = "#a6adc8";
24
24
+
};
25
25
+
26
26
+
colors.search.focused_match = {
27
27
+
foreground = "#1e1e2e";
28
28
+
background = "#a6e3a1";
29
29
+
};
30
30
+
31
31
+
colors.footer_bar = {
32
32
+
foreground = "#1e1e2e";
33
33
+
background = "#a6adc8";
34
34
+
};
35
35
+
36
36
+
colors.hints.start = {
37
37
+
foreground = "#1e1e2e";
38
38
+
background = "#f9e2af";
39
39
+
};
40
40
+
41
41
+
colors.hints.end = {
42
42
+
foreground = "#1e1e2e";
43
43
+
background = "#a6adc8";
44
44
+
};
45
45
+
46
46
+
colors.selection = {
47
47
+
text = "#1e1e2e";
48
48
+
background = "#f5e0dc";
49
49
+
};
50
50
+
51
51
+
colors.normal = {
52
52
+
black = "#45475a";
53
53
+
red = "#f38ba8";
54
54
+
green = "#a6e3a1";
55
55
+
yellow = "#f9e2af";
56
56
+
blue = "#89b4fa";
57
57
+
magenta = "#f5c2e7";
58
58
+
cyan = "#94e2d5";
59
59
+
white = "#bac2de";
60
60
+
};
61
61
+
62
62
+
colors.bright = {
63
63
+
black = "#585b70";
64
64
+
red = "#f38ba8";
65
65
+
green = "#a6e3a1";
66
66
+
yellow = "#f9e2af";
67
67
+
blue = "#89b4fa";
68
68
+
magenta = "#f5c2e7";
69
69
+
cyan = "#94e2d5";
70
70
+
white = "#a6adc8";
71
71
+
};
72
72
+
73
73
+
colors.indexed_colors = [
74
74
+
{ index = 16; color = "#fab387"; }
75
75
+
{ index = 17; color = "#f5e0dc"; }
76
76
+
];
77
77
+
};
78
78
+
})];
79
79
+
}
80
80
+
+1
modules/home/default.nix
···
1
1
{...}: {
2
2
imports = [
3
3
+
./alacritty.nix
3
4
./fonts.nix
4
5
./git.nix
5
6
./helix/default.nix