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