I currently have this file which contains my cli packages:
I have some systems which aren’t running Nixos but I still would like to use home-manager.
How could I now include the cli-packages.nix in the home-manager config? E.g. here:
Can I just rewrite cli-packages.nix to something like this:
[
tree
htop
];
and in home-manager this:
home.packages = with pkgs; [
import ../common/cli-packages.nix
ansible
];