Nicolas Berbiche

Results 108 comments of Nicolas Berbiche

The feature is practical when using Alfred or any other launchers. My solution would require users to remove the ~/Applications folder manually if it points to the nix store.

Is there any interest in this PR or should I close it?

This solution does not resolve the problem you highlighted @hardselius. It only makes nix-darwin interoperate with other tools and software by not taking ownership of the `~/Applications` folder (it becomes...

> @berbiche, [...]. Could you change the subfolder to be there rather than `~/Applications`? Might make this move forward again. Hi, I am currently away from my computer and will...

@terlar would you like to make a PR with all your recent `target.genericLinux` findings? :smiley:

We need to decide what strategy to use for release branches and how many release branches will receive these updates. We could drop the lock file in release branches but...

Here's what I added to my configuration to make this work __EDIT__ : the example has been further simplified ``` nix { # Install MacOS applications to the user environment...

This task is now handled in my PR #1460

You are right. The logic in nix-darwin to symlink applications to `~/Applications` is [here](https://github.com/LnL7/nix-darwin/blob/1b71f9f21c2e058292ef0d71d65d8655252f02c1/modules/system/applications.nix#L27-L28). ``` sh if [ ! -e ~/Applications -o -L ~/Applications ]; then ln -sfn ${cfg.build.applications}/Applications ~/Applications...