about summary refs log tree commit diff
path: root/nix/profiles/home-manager/work.nix
blob: a9800cd3d3df6f41e1ee0fc3f8541bd1ef0a829f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ ... }: {

  home.stateVersion = "23.05";

  imports = [
    ./dev.nix
    ./firefox.nix
    ./git.nix
    ./shell.nix
    ./ssh.nix
    ./zsh.nix
  ];

  programs.git = {
    userEmail = "fcuny@roblox.com";
  };
}