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

  home.stateVersion = "23.05";

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

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

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