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
update zellij
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
81f281f1
81f281f1d9936225bd50a7b8bda1b26359e3f4f4
parent
0aff50be
0aff50bebe6c070be046ce51cbc995d3afb7d438
change-id
sqknxqsu
sqknxqsumlmvkqwmkrwmwvppopzznrkv
+5
-10
1 changed file
Expand all
Collapse all
Unified
Split
hosts
common
home.nix
+5
-10
hosts/common/home.nix
Reviewed
···
528
528
if test -f ~/.config/op/plugins.sh
529
529
source ~/.config/op/plugins.sh
530
530
end
531
531
-
# Show fastfetch when inside zellij
532
532
-
if set -q ZELLIJ
531
531
+
# Auto-launch zellij if not already inside a session
532
532
+
if not set -q ZELLIJ
533
533
+
zellij
534
534
+
else
533
535
fastfetch --logo small
534
536
end
535
537
···
561
563
programs.alacritty = {
562
564
enable = true;
563
565
settings = {
564
564
-
terminal.shell = {
565
565
-
program = "zellij";
566
566
-
args = [
567
567
-
"options"
568
568
-
"--on-force-close"
569
569
-
"detach"
570
570
-
];
571
571
-
};
566
566
+
terminal.shell.program = "fish";
572
567
window = {
573
568
decorations = "none";
574
569
opacity = 0.9;