diff --git a/homes/common/default.nix b/homes/common/default.nix index ad10c3f..2d348b2 100644 --- a/homes/common/default.nix +++ b/homes/common/default.nix @@ -3,7 +3,8 @@ imports = [ ./editor.nix ./network.nix - ./oh-my-posh + #./oh-my-posh + ./starship-rs ./packages.nix ./terminal.nix ./zfs.nix diff --git a/homes/common/starship-rs/default.nix b/homes/common/starship-rs/default.nix new file mode 100644 index 0000000..0831b15 --- /dev/null +++ b/homes/common/starship-rs/default.nix @@ -0,0 +1,12 @@ +{ + pkgs, + config, + lib, + ... +}: +with lib; +{ + programs.starship = { + enable = true; + }; +}