11 lines
223 B
Nix
11 lines
223 B
Nix
# Core home functionality that will only work on Darwin
|
|
{ config, ... }:
|
|
{
|
|
home.sessionPath = [ "/opt/homebrew/bin" ];
|
|
|
|
home = {
|
|
username = config.hostSpec.username;
|
|
homeDirectory = config.hostSpec.home;
|
|
};
|
|
}
|