summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-11-22 15:30:15 -0500
committerseth <[email protected]>2024-11-22 18:09:22 -0500
commita39aa7648593e94901e0a40c9992b11e9548ea50 (patch)
tree094b4e39b2f7df3f4dd0d1a77bdbb3816011b872 /users/seth/programs/starship/default.nix
parent05df89b4cf30044dbbbf606112a9dadffc0c720a (diff)
seth/starship: drop
Diffstat (limited to 'users/seth/programs/starship/default.nix')
-rw-r--r--users/seth/programs/starship/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/users/seth/programs/starship/default.nix b/users/seth/programs/starship/default.nix
deleted file mode 100644
index edd35c7..0000000
--- a/users/seth/programs/starship/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.seth.programs.starship;
-in
-{
- options.seth.programs.starship = {
- enable = lib.mkEnableOption "Starship configuration" // {
- default = config.seth.enable;
- defaultText = lib.literalExpression "config.seth.enable";
- };
- };
-
- config = lib.mkIf cfg.enable {
- programs.starship = {
- enable = true;
-
- # i do this manually
- catppuccin.enable = false;
-
- enableBashIntegration = false;
- enableFishIntegration = false;
- enableZshIntegration = false;
-
- settings = {
- format = "$all";
- palette = "catppuccin_mocha";
- command_timeout = 250;
- } // lib.importTOML ./starship.toml;
- };
- };
-}