thaylen-city: Make sure to add brew prefix to PATH

This commit is contained in:
Charlotte Van Petegem 2024-08-23 11:05:21 +02:00
parent 60981efa55
commit f4c31a936c

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { config, pkgs, ... }:
{ {
chvp = { chvp = {
@ -76,5 +76,8 @@
startup.chime = false; startup.chime = false;
}; };
home-manager.users."charlotte.vanpetegem".home.packages = with pkgs; [ docker-compose ]; home-manager.users."charlotte.vanpetegem".home = {
packages = with pkgs; [ docker-compose ];
sessionPath = [ config.homebrew.brewPrefix ];
};
} }