tangled
alpha
login
or
join now
jordanreger.com
/
nix-config
0
fork
atom
My NixOS configuration (WORK IN PROGRESS; probably unusable)
nix
nixos
config
0
fork
atom
overview
issues
pulls
pipelines
theme alacritty
jordanreger.com
3 months ago
b8a75bed
155b276f
+52
-1
3 changed files
expand all
collapse all
unified
split
modules
home
alacritty.nix
default.nix
nixos
niri.nix
+42
modules/home/alacritty.nix
···
1
1
+
{...}: {
2
2
+
programs.alacritty = {
3
3
+
enable = true;
4
4
+
settings = {
5
5
+
font = {
6
6
+
normal = { family = "GoMono Nerd Font"; style = "Regular"; };
7
7
+
bold = { family = "GoMono Nerd Font"; style="Semibold"; };
8
8
+
italic = { family = "GoMono Nerd Font"; style="Italic"; };
9
9
+
size = 15.0;
10
10
+
};
11
11
+
12
12
+
colors = {
13
13
+
primary = {
14
14
+
background = "#000000";
15
15
+
foreground = "#999999";
16
16
+
};
17
17
+
18
18
+
normal = {
19
19
+
black = "#000000";
20
20
+
red = "#5f8787";
21
21
+
green = "#fbcb97";
22
22
+
yellow = "#e78a53";
23
23
+
blue = "#888888";
24
24
+
magenta = "#999999";
25
25
+
cyan = "#aaaaaa";
26
26
+
white = "#c1c1c1";
27
27
+
};
28
28
+
29
29
+
bright = {
30
30
+
black = "#333333";
31
31
+
red = "#5f8787";
32
32
+
green = "#fbcb97";
33
33
+
yellow = "#e78a53";
34
34
+
blue = "#888888";
35
35
+
magenta = "#999999";
36
36
+
cyan = "#aaaaaa";
37
37
+
white = "#c1c1c1";
38
38
+
};
39
39
+
};
40
40
+
};
41
41
+
};
42
42
+
}
+5
-1
modules/home/default.nix
···
1
1
{pkgs, ...}: {
2
2
+
imports = [
3
3
+
./alacritty.nix
4
4
+
];
5
5
+
2
6
home = {
3
7
packages = with pkgs; [
8
8
+
nerd-fonts.go-mono
4
9
firefox
5
10
file
6
11
tree
7
12
which
8
13
nixd
9
14
nil
10
10
-
alacritty
11
15
fuzzel
12
16
mako
13
17
];
+5
modules/nixos/niri.nix
···
7
7
environment.systemPackages = with pkgs; [
8
8
nautilus
9
9
nautilus-open-any-terminal
10
10
+
adwaita-fonts
11
11
+
adwaita-icon-theme
12
12
+
adwaita-icon-theme-legacy
13
13
+
adwaita-qt
14
14
+
adwaita-qt6
10
15
];
11
16
12
17
xdg.portal = {