mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 08:31:03 +01:00
29 lines
492 B
Nix
29 lines
492 B
Nix
{
|
|
programs = {
|
|
zellij = {
|
|
enable = true;
|
|
|
|
# No `settings`
|
|
extraConfig = ''
|
|
This_could_have_been_json {
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
test.stubs = {
|
|
zellij = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/zellij/config.kdl
|
|
|
|
assertFileContains \
|
|
home-files/.config/zellij/config.kdl \
|
|
'// extraConfig'
|
|
|
|
assertFileContains \
|
|
home-files/.config/zellij/config.kdl \
|
|
'This_could_have_been_json'
|
|
'';
|
|
}
|