📦 oh-my-posh -> starship.rs
Some checks failed
Build all NixOS Configurations / nix build (push) Failing after 5m47s

This commit is contained in:
Ingolf Wagner 2024-10-30 15:45:40 +09:00
parent 7ac796d908
commit 3afd6e851e
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
2 changed files with 14 additions and 1 deletions

View file

@ -3,7 +3,8 @@
imports = [ imports = [
./editor.nix ./editor.nix
./network.nix ./network.nix
./oh-my-posh #./oh-my-posh
./starship-rs
./packages.nix ./packages.nix
./terminal.nix ./terminal.nix
./zfs.nix ./zfs.nix

View file

@ -0,0 +1,12 @@
{
pkgs,
config,
lib,
...
}:
with lib;
{
programs.starship = {
enable = true;
};
}