diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-05 23:47:22 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:46 -0700 |
| commit | eece25c38ae26bb0ad2503a637dd96f389a009b2 (patch) | |
| tree | bd96f891e0e149244f83b24282e56353798959f8 /snowfall/modules/nixos/tools/git | |
| parent | 2a0cb8f8dd9596e2f5feab2e3d1b8b15cfcd424f (diff) | |
migration: git prompt
Diffstat (limited to 'snowfall/modules/nixos/tools/git')
| -rw-r--r-- | snowfall/modules/nixos/tools/git/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/snowfall/modules/nixos/tools/git/default.nix b/snowfall/modules/nixos/tools/git/default.nix index c619658..f58ed62 100644 --- a/snowfall/modules/nixos/tools/git/default.nix +++ b/snowfall/modules/nixos/tools/git/default.nix @@ -8,6 +8,9 @@ in { }; config = mkIf cfg.enable { - programs.git.enable = true; + programs.git = { + enable = true; + prompt.enable = true; + }; }; } |