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

{
  home = {
    username = "git";
    homeDirectory = lib.mkForce "/home/git";
  };

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

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

  home.stateVersion = "23.11";
}