This commit is contained in:
Harald Hoyer 2024-01-11 19:59:19 +01:00
parent 119d9bc58f
commit f7f5457e29
2 changed files with 40 additions and 0 deletions

View file

@ -45,6 +45,10 @@
neovim-flake.homeManagerModules.default
];
homes.users."harald@MacBook-Pro.fritz.box".modules = with inputs; [
neovim-flake.homeManagerModules.default
];
# homes.users.modules = with inputs; [
# neovim-flake.homeManagerModules.default
# ];

View file

@ -0,0 +1,36 @@
{ lib
, pkgs
, config
, nixpkgs
, osConfig ? { }
, format ? "unknown"
, ...
}:
{
home = {
username = "harald";
homeDirectory = "/Users/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
};
plusultra = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = false;
tmux.enable = true;
bat.enable = true;
git.enable = true;
starship.enable = true;
home-manager.enable = true;
};
tools = {
direnv.enable = true;
# jetbrains.enable = true;
};
};
fonts.fontconfig.enable = true;
}