1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/fabric-ai/example-config.nix
2025-09-21 09:18:26 -05:00

16 lines
356 B
Nix

{
programs.bash.enable = true;
programs.zsh.enable = true;
programs.fabric-ai = {
enable = true;
enablePattersAliases = true;
};
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileExists home-files/.zshrc
assertFileContent home-files/.bashrc ${./bashrc}
assertFileContent home-files/.zshrc ${./zshrc}
'';
}