nixcfg/homes/aarch64-darwin/harald@m4/default.nix
Harald Hoyer f806db9a11 Remove unused configuration and commented code
Eliminated obsolete systemPath entry from Darwin services default configuration. Removed unused foreign-env plugin and commented code related to shell initialization in Fish configuration. Additionally, commented out unnecessary SSH configuration options in user-specific settings.
2024-11-28 10:53:57 +01:00

45 lines
816 B
Nix

{
lib,
pkgs,
config,
...
}:
{
home = {
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
};
programs.ssh.extraConfig = ''
#UseKeychain yes
#AddKeysToAgent yes
IdentityFile ~/.ssh/id_ed25519
'';
metacfg = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
bat.enable = true;
starship.enable = true;
#home-manager.enable = true;
};
tools = {
#direnv.enable = true;
ssh.enable = true;
git.enable = true;
};
};
xdg.configFile."alacritty/alacritty.toml".source =
(pkgs.formats.toml { }).generate "alacritty-config"
{
font = {
size = 17;
};
};
}