9 lines
146 B
Nix
9 lines
146 B
Nix
{ self, ... }: {
|
|
home.sessionPath = [ "$HOME/.config/bin" ];
|
|
|
|
xdg.configFile.bin = {
|
|
source = "${self}/bin";
|
|
recursive = true;
|
|
};
|
|
}
|