What's the difference between programs and home.packages?
#7461
|
I have some programs installed through { pkgs, ... }:
{
# ...
home.packages = with pkgs; [
jq
];
programs = {
fzf.enable = true;
};
}What's the difference between the two? |
Answered by
ivandimitrov8080
Nov 27, 2023
Replies: 2 comments
|
In my experience the |
0 replies
Answer selected by
khaneliman
|
most of the time they are the same, but the executable provided by |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my experience the
packagesarray provides your environment with just the executable andprogramsprovides some additional configuration and installation options by default and some that you can set as well.