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.
Answered by
ivandimitrov8080
Nov 27, 2023
Replies: 1 comment
-
|
In my experience the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
khaneliman
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.