1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/tests/modules/programs/oh-my-posh/assertion-settings-config-file.nix
Austin Horstman 10f5a0cc4b tests/oh-my-posh: expand test coverage
Cover some more scenarios with the module.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-09-17 00:06:30 -05:00

13 lines
289 B
Nix

{
programs.oh-my-posh = {
enable = true;
settings = {
version = 2;
};
configFile = "/etc/oh-my-posh/custom.json";
};
test.asserts.assertions.expected = [
"oh-my-posh: Only one of 'settings', 'useTheme', or 'configFile' can be configured at a time."
];
}