diff --git a/apps/fsel/config.toml b/apps/fsel/config.toml deleted file mode 100644 index d6fb1ac..0000000 --- a/apps/fsel/config.toml +++ /dev/null @@ -1,17 +0,0 @@ -# Colors -# highlight_color = "LightBlue" -# cursor = "█" - -# App launcher -terminal_launcher = "ghostty -e" - -[app_launcher] -filter_desktop = true # Filter apps by desktop environment -list_executables_in_path = false # Show CLI tools from $PATH -hide_before_typing = false # Hide list until you start typing -match_mode = "fuzzy" # "fuzzy" or "exact" -confirm_first_launch = false # Confirm before launching new apps with -p - -# Pin/favorite settings -# pin_color = "rgb(255,165,0)" # Color for pin icon (orange) -# pin_icon = "📌" # Icon for pinned apps diff --git a/apps/fsel/home.nix b/apps/fsel/home.nix deleted file mode 100644 index cabade2..0000000 --- a/apps/fsel/home.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - pkgs, - inputs, - myConfig, - ... -}: { - home.packages = [ - inputs.fsel.packages.${pkgs.system}.default # FIXME: does not have its own homeManagerModules - pkgs.wl-clipboard - ]; - home.file.".config/fsel/config.toml".text = '' - [exec] - terminal_launcher = "${myConfig.terminal.default} -e" - ''; -} diff --git a/apps/starship/home.nix b/apps/starship/home.nix deleted file mode 100644 index c4dc551..0000000 --- a/apps/starship/home.nix +++ /dev/null @@ -1,55 +0,0 @@ -{config, ...}: { - programs.starship = { - enable = true; - settings = { - format = '' - [](surface0)$os$directory[](fg:surface0 bg:peach)$git_branch$git_status[](fg:peach bg:surface1)$c$rust$nodejs$python$golang[](fg:surface1 bg:surface0)$nix_shell[](surface0) - $character''; - - palette = "catppuccin"; - palettes.catppuccin = { - surface0 = "#313244"; - surface1 = "#45475a"; - peach = "#fab387"; - lavender = "#b4befe"; - sapphire = "#74c7ec"; - text = "#cdd6f4"; - }; - os = { - disabled = false; - format = "[$symbol]($style)"; - style = "bg:surface0 fg:text"; - symbols = {NixOS = " ";}; - }; - - directory = { - style = "bg:surface0 fg:lavender"; - format = "[ $path ]($style)"; - truncation_length = 3; - truncation_symbol = "…/"; - }; - - git_branch = { - symbol = "󰊢 "; - style = "bg:peach fg:surface0"; - format = "[[ $symbol $branch ]($style)]($style)"; - }; - - git_status = { - style = "bg:peach fg:surface0"; - format = "[[($all_status$ahead_behind )]($style)]($style)"; - }; - - nix_shell = { - symbol = "󱄅 "; - style = "bg:surface0 fg:sapphire"; - format = "[ $symbol $state ]($style)"; - }; - - character = { - success_symbol = "[󱞩](bold green)"; - error_symbol = "[󱞩](bold red)"; - }; - }; - }; -} diff --git a/flake.nix b/flake.nix index 24cde72..47c4d73 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,6 @@ elephant.url = "github:abenz1267/elephant"; chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; textfox.url = "github:adriankarlen/textfox"; - fsel.url = "github:Mjoyufull/fsel"; home-manager = { url = "github:nix-community/home-manager";