1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/oh-my-posh/bash.nix
2022-11-02 01:04:42 +01:00

22 lines
333 B
Nix

{ ... }:
{
programs = {
bash.enable = true;
oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};
test.stubs.oh-my-posh = { };
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
'/bin/oh-my-posh init bash --config'
'';
}