Files
Nixos/hosts/darwin/home/alistreaza.nix
T

29 lines
678 B
Nix

{ import-tree, ... }:
{
home-manager.users.alistreaza = {
imports = [
(import-tree ../../../modules/home/common)
];
home = {
username = "alistreaza";
homeDirectory = /Users/alistreaza;
};
# Shell apps
home.shell.zsh.enable = true;
home.shell.git.enable = true;
home.shell.neovim.enable = true;
home.shell.nh.enable = true;
home.shell.env.enable = true;
# No Home Application Folders
targets.darwin.linkApps.enable = false;
targets.darwin.copyApps.enable = false;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "25.11";
};
}