mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
16 lines
356 B
Nix
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}
|
|
'';
|
|
}
|