feat/nix #3

Merged
Jaaj-San merged 59 commits from feat/nix into main 2024-09-20 22:35:47 +02:00
2 changed files with 10 additions and 2 deletions
Showing only changes of commit 1ba1511c69 - Show all commits

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