We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
not that i'm aware of
just like in system profiles, i want to be able to take in pkgs (and possibly other things like config in home-manager profiles. .
pkgs
config
I can't think of another easy way to get things where they need to go.
There are some attributes that require packages as values, or commands that require something like ${pkgs.feh}/bin/feh to work
${pkgs.feh}/bin/feh
The text was updated successfully, but these errors were encountered:
Home-manager profiles are just like any other module, you can get pkgs as an argument.
{ config, pkgs, ... }: { environment.systemPackages = [ pkgs.feh ]; }
If that doesn't work, then there might be a bug or perhaps I'm misunderstanding the question.
Sorry, something went wrong.
Oh, you're totally right. I tried it and it seemed to break, but now it's working. I guess I did something else wrong.
No branches or pull requests
Would your feature fix an existing issue?
not that i'm aware of
Describe the solution you'd like
just like in system profiles, i want to be able to take in
pkgs
(and possibly other things likeconfig
in home-manager profiles. .Describe alternatives you've considered
I can't think of another easy way to get things where they need to go.
Additional context
There are some attributes that require packages as values, or commands that require something like
${pkgs.feh}/bin/feh
to workThe text was updated successfully, but these errors were encountered: