Compare commits

..

2 commits

Author SHA1 Message Date
Culis Gaspard
1ba1511c69 term: Added zellij nix config 2024-09-20 10:00:42 +02:00
Culis Gaspard
a459a5f73d Update gitignore 2024-09-20 09:56:04 +02:00
3 changed files with 11 additions and 2 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
venv/
.direnv

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
];
}