2.home-manager/tests/modules/programs/aliae/settings.nix
2025-09-30 14:45:48 -05:00

30 lines
533 B
Nix

{
programs.aliae = {
enable = true;
settings = {
alias = [
{
name = "a";
value = "aliae";
}
{
name = "hello-world";
value = ''echo "hello world"'';
type = "function";
}
];
env = [
{
name = "EDITOR";
value = "code-insiders --wait";
}
];
};
};
nmt.script = ''
assertFileExists home-files/.aliae.yaml
assertFileContent home-files/.aliae.yaml ${./aliae.yaml}
'';
}