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

  home.stateVersion = "23.05";

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

  programs.git = {
    userEmail = "franck@fcuny.net";
  };
}