1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
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
'';
}