mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
20 lines
273 B
Nix
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";
|
|
|
|
}
|