alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Add Noctalia Zellij theme template
author
Sean Aye
date
1 week ago
(Jun 15, 2026, 11:48 PM -0400)
commit
887c1562
887c1562cdb40d614ff3c756b0086fe67393c757
parent
26771114
26771114ec32e68651f01b4c476f59ec89dc88ad
change-id
okpzkkml
okpzkkmllksvuxlrlnzmslkxqnmmzpxm
+24
3 changed files
Expand all
Collapse all
Unified
Split
modules
_config
noctalia
templates
zellij.kdl
desktop.nix
shell.nix
+17
modules/_config/noctalia/templates/zellij.kdl
Reviewed
···
1
1
+
themes {
2
2
+
noctalia {
3
3
+
fg "{{colors.terminal_foreground.default.hex}}"
4
4
+
bg "{{colors.terminal_background.default.hex}}"
5
5
+
6
6
+
black "{{colors.terminal_normal_black.default.hex}}"
7
7
+
red "{{colors.terminal_normal_red.default.hex}}"
8
8
+
green "{{colors.terminal_normal_green.default.hex}}"
9
9
+
yellow "{{colors.terminal_normal_yellow.default.hex}}"
10
10
+
blue "{{colors.terminal_normal_blue.default.hex}}"
11
11
+
magenta "{{colors.terminal_normal_magenta.default.hex}}"
12
12
+
cyan "{{colors.terminal_normal_cyan.default.hex}}"
13
13
+
white "{{colors.terminal_normal_white.default.hex}}"
14
14
+
15
15
+
orange "{{colors.tertiary.default.hex}}"
16
16
+
}
17
17
+
}
+5
modules/desktop.nix
Reviewed
···
374
374
flavor = "frappe";
375
375
alacritty.enable = false;
376
376
helix.enable = false;
377
377
+
zellij.enable = false;
377
378
};
378
379
379
380
programs.noctalia = {
···
397
398
helix = {
398
399
input_path = "${inputs.noctalia}/assets/templates/helix/helix.toml";
399
400
output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml";
401
401
+
};
402
402
+
zellij = {
403
403
+
input_path = "${./_config/noctalia/templates/zellij.kdl}";
404
404
+
output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl";
400
405
};
401
406
};
402
407
};
+2
modules/shell.nix
Reviewed
···
56
56
};
57
57
pane_frames = false;
58
58
show_startup_tips = false;
59
59
+
theme = "noctalia";
60
60
+
theme_dir = "~/.config/zellij/themes";
59
61
ui = {
60
62
pane_frames.hide_session_name = true;
61
63
};