1
0
Fork 0
forked from Bun/nixos-config

Add lingering, remove kill on exit, fix smallfetch, replace tmux with zellij

This commit is contained in:
Bun 2025-06-02 16:47:10 -04:00
parent 72d7b9d038
commit 43546073cf
6 changed files with 16 additions and 27 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, ... }:
{
programs.zellij = {
enable = true;
attachExistingSession = true;
};
home.persistence."${config.xdg.userDirs.extraConfig.XDG_PERSIST_DIR}".directories =
with lib; with config.home; with config.xdg; [
"state/${removePrefix "${homeDirectory}/" cacheHome}/zellij"
"state/${removePrefix "${homeDirectory}/" configHome}/zellij"
];
}