summaryrefslogtreecommitdiff
path: root/modules/home/christian.nix
blob: 461f2735fe92f1f97374608216cb1be66f9302b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, inputs, ... }:
{
  imports = [ ./nvim ];

  home.stateVersion = "25.11";

  home.packages = with pkgs; [ ];

  programs.git = {
    enable = true;
    settings.user.name = "Christian";
    settings.user.email = "[email protected]";
  };

  programs.home-manager.enable = true;
}