16 lines
156 B
Nix
16 lines
156 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
git
|
|
starship
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
};
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|
|
|