summaryrefslogtreecommitdiff
path: root/machines/oxo/git-home.nix
blob: ce20f9edfe63e188c00d80fb232553423c207ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ inputs, pkgs, ... }:

{
  home = {
    username = "git";
    homeDirectory = "/home/git";
  };

  home.packages = with pkgs; [
    git-lfs
  ];

  imports = (map (path: ../../config/${path}) [
    "git"
    "nvim"
  ]);

  home.stateVersion = "23.11";
}