mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
16 lines
519 B
Nix
16 lines
519 B
Nix
|
{ config, pkgs, user, lib, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git # Version control system for tracking changes in source code during software development.
|
||
|
git-annex # Manages files with git, without checking the file contents into git.
|
||
|
lazygit # Terminal-based GUI for git, making it easier to use and visualize git repositories.
|
||
|
];
|
||
|
|
||
|
age.secrets."git/github_personal" = {
|
||
|
file = ../../secrets/git/github_personal.age;
|
||
|
owner = "${user}";
|
||
|
group = "users";
|
||
|
};
|
||
|
}
|
||
|
|