Common/starship: setup using home manager and use catppuccin modue

This commit is contained in:
Toast 2024-04-10 10:50:42 +02:00 committed by Toast
parent 3ecc3456ec
commit 16d47d5214

View file

@ -49,4 +49,13 @@ in {
} }
]; ];
}; };
# The catppuccin module only works for home-manager, so this
# sets up starship with home-manager using the system config
home-manager.users.toast = {osConfig, ...}: {
programs.starship = {
enable = true;
catppuccin.enable = true;
settings = osConfig.programs.starship.settings;
};
};
} }