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
Use external Noctalia Zellij theme
author
Sean Aye
date
1 week ago
(Jun 15, 2026, 11:54 PM -0400)
commit
8253f5c8
8253f5c8d109a5228ec6e3f1e82fce98555e6927
parent
887c1562
887c1562cdb40d614ff3c756b0086fe67393c757
change-id
xkkzpxks
xkkzpxksrmunwrvultpoorvrzkyrotrl
+19
-18
4 changed files
Expand all
Collapse all
Unified
Split
flake.lock
flake.nix
modules
_config
noctalia
templates
zellij.kdl
desktop.nix
+14
flake.lock
Reviewed
···
798
798
"type": "github"
799
799
}
800
800
},
801
801
+
"noctalia-theme-zellij": {
802
802
+
"flake": false,
803
803
+
"locked": {
804
804
+
"lastModified": 1781581969,
805
805
+
"narHash": "sha256-z5cwZohawOoLzGLCygpqpk5m/hVK7sruTckhwm9zzmM=",
806
806
+
"path": "/home/sean/dev/noctalia-theme-zellij",
807
807
+
"type": "path"
808
808
+
},
809
809
+
"original": {
810
810
+
"path": "/home/sean/dev/noctalia-theme-zellij",
811
811
+
"type": "path"
812
812
+
}
813
813
+
},
801
814
"opencodex": {
802
815
"inputs": {
803
816
"nixpkgs": [
···
836
849
"nixos-raspberrypi": "nixos-raspberrypi",
837
850
"nixpkgs": "nixpkgs_8",
838
851
"noctalia": "noctalia",
852
852
+
"noctalia-theme-zellij": "noctalia-theme-zellij",
839
853
"opencodex": "opencodex",
840
854
"trmnl-rs": "trmnl-rs",
841
855
"zen-browser": "zen-browser"
+4
flake.nix
Reviewed
···
24
24
catppuccin.url = "github:catppuccin/nix";
25
25
niri.url = "github:sodiboo/niri-flake";
26
26
noctalia.url = "github:noctalia-dev/noctalia";
27
27
+
noctalia-theme-zellij = {
28
28
+
url = "path:/home/sean/dev/noctalia-theme-zellij";
29
29
+
flake = false;
30
30
+
};
27
31
nixarr.url = "github:rasmus-kirk/nixarr";
28
32
zen-browser = {
29
33
url = "github:0xc000022070/zen-browser-flake";
-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
-
}
+1
-1
modules/desktop.nix
Reviewed
···
400
400
output_path = "$XDG_CONFIG_HOME/helix/themes/noctalia.toml";
401
401
};
402
402
zellij = {
403
403
-
input_path = "${./_config/noctalia/templates/zellij.kdl}";
403
403
+
input_path = "${inputs.noctalia-theme-zellij}/zellij.kdl";
404
404
output_path = "$XDG_CONFIG_HOME/zellij/themes/noctalia.kdl";
405
405
};
406
406
};