aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/starship.nix
diff options
context:
space:
mode:
authorSimen A. W. Olsen <cobraz@Simens-MacBook-Pro-4.local>2026-03-21 13:49:10 +0100
committerSimen A. W. Olsen <cobraz@Simens-MacBook-Pro-4.local>2026-03-21 13:49:10 +0100
commit1fd92fcaf3aadea1e9509f859340f57100218c41 (patch)
treedb88f38eef0b04000cfd7affbbd5ab9175027f08 /modules/home/starship.nix
parent95083ca2ac000adeaaaa9a14c8e64b015979d0b1 (diff)
downloaddotfiles-1fd92fcaf3aadea1e9509f859340f57100218c41.tar.gz
dotfiles-1fd92fcaf3aadea1e9509f859340f57100218c41.zip
refactor: consolidate dotfiles into declarative Nix modules
- Remove nvim git submodule, use flake input instead - Inline all shell configurations into Nix modules - Remove legacy bootstrap.sh and macos/macos script - Add NixOS system configuration support - Update documentation with platform-specific setup - Add claude-code to macOS Homebrew - Remove stow-based dotfile management approach
Diffstat (limited to 'modules/home/starship.nix')
-rw-r--r--modules/home/starship.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home/starship.nix b/modules/home/starship.nix
index 05a70f3..4f3cb61 100644
--- a/modules/home/starship.nix
+++ b/modules/home/starship.nix
@@ -1,5 +1,7 @@
{ ... }:
{
- home.file.".config/starship.toml".source = ../../starship/.config/starship.toml;
+ programs.starship = {
+ enable = true;
+ };
}