summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship/default.nix
diff options
context:
space:
mode:
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;
- };
- };
-}