1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/modules/programs/zellij/config-settings.nix

24 lines
383 B
Nix

{
programs = {
zellij = {
enable = true;
settings = {
default_layout = "welcome";
};
# No extraConfig
};
};
test.stubs = {
zellij = { };
};
nmt.script = ''
assertFileExists home-files/.config/zellij/config.kdl
assertFileContains \
home-files/.config/zellij/config.kdl \
'default_layout "welcome"'
'';
}