add mac
This commit is contained in:
parent
119d9bc58f
commit
f7f5457e29
|
@ -45,6 +45,10 @@
|
||||||
neovim-flake.homeManagerModules.default
|
neovim-flake.homeManagerModules.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
homes.users."harald@MacBook-Pro.fritz.box".modules = with inputs; [
|
||||||
|
neovim-flake.homeManagerModules.default
|
||||||
|
];
|
||||||
|
|
||||||
# homes.users.modules = with inputs; [
|
# homes.users.modules = with inputs; [
|
||||||
# neovim-flake.homeManagerModules.default
|
# neovim-flake.homeManagerModules.default
|
||||||
# ];
|
# ];
|
||||||
|
|
36
homes/x86_64-darwin/harald@MacBook-Pro.fritz.box/default.nix
Normal file
36
homes/x86_64-darwin/harald@MacBook-Pro.fritz.box/default.nix
Normal 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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue