6 lines
195 B
Nix
6 lines
195 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [(nerdfonts.override {fonts = ["FiraCode"];})];
|
|
xdg.configFile."starship.toml".source = ./config/starship.toml;
|
|
programs.starship.enable = true;
|
|
}
|