Files
nixos/Droidnix/generated/system/applications/terminal_shell/starship.nix
T
2026-03-08 10:14:03 +01:00

12 lines
289 B
Nix

{ config, pkgs, lib, user, flakeRoot, ... }:
{
home-manager.users.${user.username} = {
programs.starship = {
enable = true;
};
# Use the starship.toml from your assets
xdg.configFile."starship.toml".source = "${flakeRoot}/assets/common/conf/starship.toml";
};
}