forked from Bun/nixos-config
Add lingering, remove kill on exit, fix smallfetch, replace tmux with zellij
This commit is contained in:
parent
72d7b9d038
commit
43546073cf
6 changed files with 16 additions and 27 deletions
13
modules/home/programs/terminal/zellij/default.nix
Normal file
13
modules/home/programs/terminal/zellij/default.nix
Normal 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"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue