NixOSConfig/lib/users/common.nix

15 lines
220 B
Nix
Raw Normal View History

2024-05-08 22:59:02 +00:00
{ ... }: {
config = {
programs = {
bash.enable = true;
fish.enable = true;
zsh.enable = true;
zoxide = {
enable = true;
enableFishIntegration = true;
};
};
};
2024-05-08 22:59:02 +00:00
}