12 lines
161 B
Nix
12 lines
161 B
Nix
{ self, ... }:
|
|
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.configFile."zellij" = {
|
|
source = "${self}/config/zellij";
|
|
recursive = true;
|
|
};
|
|
}
|