feat(home-config): add default home configuration

- Introduced a default `home-manager` configuration for user setup.
- Enabled multiple CLI tools like `bash`, `fish`, `bat`, and `starship`.
- Configured `home.sessionPath` to include the user's bin directory.
This commit is contained in:
Harald Hoyer 2025-11-14 06:59:22 +01:00
parent babf38d817
commit 57c8f86fde

View file

@ -0,0 +1,19 @@
{ config, ... }:
{
home.sessionPath = [ "$HOME/bin" ];
metacfg = {
user = {
enable = true;
name = config.snowfallorg.user.name;
};
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = false;
bat.enable = true;
starship.enable = true;
home-manager.enable = true;
};
};
}