summaryrefslogtreecommitdiffstats
path: root/home-manager/home.nix
blob: e2ea67f64146829e100283a7429defc9f7c8d76a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{

  imports = [
    ./zsh.nix
    ./modules/bundle.nix
  ];

  home = {
    username = "amper";
    homeDirectory = "/home/amper";
    stateVersion = "23.11";
  };
}