mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
381 B
Nix
17 lines
381 B
Nix
{ self, config, pkgs, ... }:
|
|
{
|
|
|
|
programs.zellij = {
|
|
enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
zjstatus
|
|
];
|
|
|
|
xdg.configFile = {
|
|
"zellij/config.kdl".text = import "${self}/programs/zellij/config.kdl.nix" { inherit config; };
|
|
"zellij/layouts/default.kdl".text = import "${self}/programs/zellij/layouts/default.kdl.nix" { inherit config pkgs; };
|
|
};
|
|
|
|
}
|