nixos-config/modules/home/profiles/generic/default.nix

8 lines
170 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.targets.genericLinux.enable {
home = {
sessionVariables.PATH = "$HOME/.nix-profile/bin:$PATH";
};
};
}