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