12 lines
333 B
Nix
12 lines
333 B
Nix
{ config, pkgs, lib, user, flakeRoot, ... }:
|
|
{
|
|
home-manager.users.${user.username} = {
|
|
programs.starship = {
|
|
enable = true;
|
|
};
|
|
|
|
# Use the starship.toml from your assets <-- this should be the only place doing it!
|
|
xdg.configFile."starship.toml".source = "${flakeRoot}/assets/common/conf/starship.toml";
|
|
};
|
|
}
|