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? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
In my experience the |
Beta Was this translation helpful? Give feedback.
-
|
most of the time they are the same, but the executable provided by |
Beta Was this translation helpful? Give feedback.
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.