nixos/home-manager/common/default.nix

26 lines
287 B
Nix
Raw Normal View History

2025-12-08 20:30:22 -05:00
{
pkgs,
inputs,
vars,
...
}:
{
home = {
username = "${vars.user}";
homeDirectory = "/home/${vars.user}";
};
home.packages = with pkgs; [
lazygit
];
programs.zsh = {
shellAliases = {
lg = "lazygit";
};
};
home.stateVersion = "26.05";
}