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

  home.stateVersion = "23.05";

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

  home.packages = with pkgs; [
    self.packages.${pkgs.system}.robloxenv
  ];

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