First commit

This commit is contained in:
2026-02-22 17:28:02 +01:00
parent 7a70268785
commit 6bacf1878e
9011 changed files with 114470 additions and 0 deletions
@@ -0,0 +1,22 @@
# /home/henrov/nixos/modules/home-manager/shell/starship.nix
#
# Home Manager Starship prompt configuration.
# Configuration is sourced from: ~/nixos/files/conf/terminal/starship.toml
{ config, lib, pkgs, ... }:
let
# From: nixos/modules/home-manager/shell -> nixos/files/conf/terminal
confDir = ../../../files/conf/terminal;
in
{
programs.starship = {
enable = true;
# Let Starship hook into shells managed by Home Manager.
enableZshIntegration = true;
enableBashIntegration = true;
settings = builtins.fromTOML (builtins.readFile (confDir + "/starship.toml"));
};
}