.dotfiles/dot_config/flake/home/hinge/hinge.nix
2024-12-05 08:42:33 -05:00

20 lines
273 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [../common.nix];
home.username =lib.mkForce "tyler.mayoff";
home.homeDirectory = lib.mkForce "/Users/tyler.mayoff";
home.packages = with pkgs; [
bazel ];
# home.stateVersion = "23.11";
}