From 3afd6e851e764fc85b3e1029474f5c0ffb2c9c5a Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Wed, 30 Oct 2024 15:45:40 +0900 Subject: [PATCH] :package: oh-my-posh -> starship.rs --- homes/common/default.nix | 3 ++- homes/common/starship-rs/default.nix | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 homes/common/starship-rs/default.nix 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; + }; +}