cleaned up unused vars

This commit is contained in:
kenji
2025-12-27 11:41:05 -06:00
parent 8372715482
commit 1cd2b54e6a
4 changed files with 0 additions and 88 deletions
-17
View File
@@ -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
-15
View File
@@ -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"
'';
}
-55
View File
@@ -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)";
};
};
};
}
-1
View File
@@ -5,7 +5,6 @@
elephant.url = "github:abenz1267/elephant"; elephant.url = "github:abenz1267/elephant";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
textfox.url = "github:adriankarlen/textfox"; textfox.url = "github:adriankarlen/textfox";
fsel.url = "github:Mjoyufull/fsel";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";