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
Fix zellij theme directory setup
author
Sean Aye
date
1 week ago
(Jun 16, 2026, 10:30 AM -0400)
commit
be10f830
be10f830e247396a60a63475e5dbc49a26dd38c6
parent
d84f28c6
d84f28c6e4e10b593d5099cb18199fb897f2ca39
change-id
mypnwpuo
mypnwpuokqxzpnkknostnmzyxlyonnqo
+4
-1
1 changed file
Expand all
Collapse all
Unified
Split
modules
shell.nix
+4
-1
modules/shell.nix
Reviewed
···
57
57
pane_frames = false;
58
58
show_startup_tips = false;
59
59
theme = "noctalia";
60
60
-
theme_dir = "~/.config/zellij/themes";
60
60
+
theme_dir = "${config.xdg.configHome}/zellij/themes";
61
61
ui = {
62
62
pane_frames.hide_session_name = true;
63
63
};
64
64
};
65
65
};
66
66
+
67
67
+
# Ensure the theme directory exists before noctalia writes its generated theme.
68
68
+
xdg.configFile."zellij/themes/.keep".text = "";
66
69
67
70
xdg.configFile."zellij/plugins/zrpc.wasm".source = "${zrpc-wasm pkgs}/zrpc.wasm";
68
71
xdg.configFile."zellij/plugins/harpoon.wasm".source = "${harpoon-wasm pkgs}/harpoon.wasm";