10 lines
135 B
Nix
10 lines
135 B
Nix
{ self, ... }:
|
|
{
|
|
home.sessionPath = [ "$HOME/bin" ];
|
|
|
|
home.file."bin" = {
|
|
source = "${self}/bin";
|
|
recursive = true;
|
|
};
|
|
}
|