Simplified input argument structures across multiple Nix modules by removing unnecessary bindings and standardizing formats. Enabled `system.primaryUser` setting and updated PAM configuration for sudo touch ID authentication. Removed deprecated or unused configurations, including user fields in metacfg and outdated options in some modules.
28 lines
513 B
Nix
28 lines
513 B
Nix
{ config
|
|
, ...
|
|
}:
|
|
{
|
|
home = {
|
|
username = "harald";
|
|
homeDirectory = "/Users/${config.home.username}";
|
|
stateVersion = "23.11"; # Please read the comment before changing.
|
|
# sessionPath = [ "$HOME/bin" ];
|
|
};
|
|
|
|
metacfg = {
|
|
|
|
cli-apps = {
|
|
bash.enable = true;
|
|
fish.enable = true;
|
|
neovim.enable = false;
|
|
bat.enable = true;
|
|
starship.enable = true;
|
|
#home-manager.enable = true;
|
|
};
|
|
|
|
tools = {
|
|
ssh.enable = true;
|
|
git.enable = true;
|
|
};
|
|
};
|
|
}
|