2024-12-20 13:17:13 -05:00

16 lines
241 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [];
environment.systemPackages = with pkgs; [
git
];
home-manager.users.talexander = { pkgs, ... }: {
home.file.".gitconfig" = {
source = ./files/gitconfig_home;
};
};
}