Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to run again? #5

Closed
rastarr opened this issue Aug 11, 2024 · 5 comments
Closed

How to run again? #5

rastarr opened this issue Aug 11, 2024 · 5 comments
Labels
documentation Improvements or additions to documentation

Comments

@rastarr
Copy link

rastarr commented Aug 11, 2024

thanks so much for this repo.
i managed to install affinity photo.
once you quit the app, how do you run it again though?
I'm not seeing it in my i3 run menu so a bit confused and a total newbie at Wine

@mrshmllow
Copy link
Owner

mrshmllow commented Aug 29, 2024

Hey hey, sorry ive been busy and unable to respond to github. How did you install the application? If you install it through nix the .desktop files should exist. If not, it may be a bug in this repo.

The code examples just run it one-shot

@rastarr
Copy link
Author

rastarr commented Aug 29, 2024

it's ok now and thanks for the reply.
The affinity apps are too flakey and unstable for my liking. I'll continue using a Windows VM for Affinity and Itunes.
Maybe one bright sunny day, Affinity might come to native Linux but I won't hold my breathe :)

@mrshmllow
Copy link
Owner

mrshmllow commented Aug 29, 2024 via email

@mrshmllow mrshmllow added the documentation Improvements or additions to documentation label Sep 6, 2024
@emenel
Copy link

emenel commented Sep 29, 2024

i realize that it might be flaky, but i'd still love to understand how to install these in my nixos/home-manager system if possible. i've tried a few different things but so far nothing has worked.

thanks for all the work on this!

@mrshmllow
Copy link
Owner

i realize that it might be flaky, but i'd still love to understand how to install these in my nixos/home-manager system if possible. i've tried a few different things but so far nothing has worked.

You can use nix profile install nix profile install github:mrshmllow/affinity-nix#photo

Otherwise, add this repo as a flake input, then just access affinity-nix.packages.x86_64-linux.photo anywhere you would install a package.

{
  inputs = {
    affinity-nix.url = "github:mrshmllow/affinity-nix";
    ...
  };

  outputs = inputs @ {
    affinity-nix,
    ...
  }: {
    homeConfigurations.marsh = home-manager.lib.homeManagerConfiguration {
      pkgs = nixpkgs.legacyPackages."x86_64-linux";
      extraSpecialArgs = {inherit inputs;};
      modules = [
        {
          home.packages = [affinity-nix.packages.x86_64-linux.photo];
        }
      ];
    };
  }
}

this applies to every flake that exposes a package :)

if you want to run the other scripts like updatePhoto, use nix run like in the readme

@mrshmllow mrshmllow pinned this issue Sep 30, 2024
Repository owner locked and limited conversation to collaborators Sep 30, 2024
@mrshmllow mrshmllow converted this issue into discussion #9 Sep 30, 2024

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

3 participants