27 lines
389 B
Nix
27 lines
389 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
home.username = "lcech";
|
|
|
|
home.homeDirectory = "/Users/lcech";
|
|
|
|
home.stateVersion = "24.11";
|
|
|
|
home.packages = with pkgs; [
|
|
awscli2
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Lukas Cech";
|
|
userEmail = "lcech@veracode.com";
|
|
};
|
|
}
|
|
|