diff --git a/flake.nix b/flake.nix index df7ad4f..c3647fa 100644 --- a/flake.nix +++ b/flake.nix @@ -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 # ]; diff --git a/homes/x86_64-darwin/harald@MacBook-Pro.fritz.box/default.nix b/homes/x86_64-darwin/harald@MacBook-Pro.fritz.box/default.nix new file mode 100644 index 0000000..eab10ff --- /dev/null +++ b/homes/x86_64-darwin/harald@MacBook-Pro.fritz.box/default.nix @@ -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; +} +