summaryrefslogtreecommitdiff
path: root/home-manager/common/home.nix
blob: b5886d48291a4d73ab4b62000f3445822b966197 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, ... }: let
  username = config.userdata.user;
in {
  imports = [ ./modules/git.nix ];

  programs.home-manager.enable = true;

  home = {
    inherit username;
    stateVersion = "23.11";
    homeDirectory = "/home/${config.home.username}";
  };
}