seperated zellij out a bit more.

This commit is contained in:
Gabe Venberg 2024-03-23 00:14:22 -05:00
parent 8aa72da8aa
commit 1f7387e7b7
3 changed files with 10 additions and 135 deletions

View file

@ -11,7 +11,6 @@
home.stateVersion = "23.11"; # Please read the comment before changing.
home.packages = with pkgs; [
zellij
sshfs
just
fd
@ -26,7 +25,6 @@
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
".config/zellij/config.kdl".source = ./zellij/config.kdl;
};
home.sessionVariables = {

10
nix/zellij/zellij.nix Normal file
View file

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
programs.zellij.enable = true;
home.file = {
".config/zellij/config.kdl".source = ./config.kdl;
};
}