mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
Cover some more scenarios with the module. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
11 lines
279 B
Nix
11 lines
279 B
Nix
{
|
|
programs.oh-my-posh = {
|
|
enable = true;
|
|
useTheme = "jandedobbeleer";
|
|
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."
|
|
];
|
|
}
|