term: Added zellij nix config

This commit is contained in:
Culis Gaspard 2024-09-20 10:00:42 +02:00
parent a459a5f73d
commit 1ba1511c69
2 changed files with 10 additions and 2 deletions

View file

@ -1,7 +1,6 @@
{
imports = [
./alacritty
./zellij
];
}

9
term/zellij/default.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
home.file = {
".config/zellij/config.kdl".source = ./config.kdl;
};
home.packages = [
pkgs.zellij
];
}