Files
nix-config/home/panotaka/common/core/darwin.nix
2025-05-12 23:25:39 -03:00

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;
};
}