Browse Source

starship init

dev_01_initial
Heiko Blobner 3 years ago
parent
commit
524a46720c
  1. 1
      home-manager/hblobner_at_devvie.nix
  2. 8
      home-manager/modules/starship.nix

1
home-manager/hblobner_at_devvie.nix

@ -1,6 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ ./modules/starship.nix ]
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
# paths it should manage. # paths it should manage.
home.username = "hblobner"; home.username = "hblobner";

8
home-manager/modules/starship.nix

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
programs.starship = {
enable = true;
enableZshIntegration = true;
};
}
Loading…
Cancel
Save