2.home-manager/tests/modules/programs/ashell/empty-settings.nix
Austin Horstman 650a38ebe8 ashell: support yaml and toml config
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-07-05 00:26:25 -05:00

13 lines
221 B
Nix

{ ... }:
{
programs.ashell = {
enable = true;
settings = { };
};
nmt.script = ''
assertPathNotExists home-files/.config/ashell/config.toml
assertPathNotExists home-files/.config/ashell.yml
'';
}