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