Common: enable starship

This commit is contained in:
Toast 2023-10-10 23:11:01 +02:00
parent 330b203396
commit 5e8f1f8232
2 changed files with 8 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./comma.nix ./comma.nix
./bash.nix ./bash.nix
./git.nix ./git.nix
./starship.nix
]; ];
# Some programs dont have a programs.*.enable option, so I install their package here # Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,7 @@
{ config, ... }:
{
programs.starship = {
enable = true;
};
}