nixos-config/modules/home/all/nix.nix
2025-08-28 20:52:04 -04:00

14 lines
378 B
Nix

{ pkgs, lib, ... }:
{
# Nix configuration is managed globally by nix-darwin.
# Prevent $HOME nix.conf from disrespecting it.
home.file.".config/nix/nix.conf".text = "";
# Global session path for all shells
home.sessionPath = lib.mkIf pkgs.stdenv.isDarwin [
"/etc/profiles/per-user/$USER/bin"
"/nix/var/nix/profiles/system/sw/bin"
"/usr/local/bin"
];
}