From a4588c49aa0a6652aed9a6dd03dac46bbf893153 Mon Sep 17 00:00:00 2001 From: Eclypsed Date: Tue, 28 Oct 2025 23:56:03 -0400 Subject: [PATCH] Removed stylix --- modules/home/default.nix | 6 +++--- modules/home/stylix.nix | 20 -------------------- modules/home/zsh.nix | 40 ++++++++++++++++++++-------------------- 3 files changed, 23 insertions(+), 43 deletions(-) delete mode 100644 modules/home/stylix.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 8a62c8b..6524fde 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -3,14 +3,14 @@ }: { imports = [ - ./catppuccin.nix + ./alacritty.nix + # ./catppuccin.nix ./firefox.nix ./git.nix ./nvf.nix ./packages.nix - ./plasma.nix + # ./plasma.nix ./ssh.nix - ./stylix.nix ./vscode.nix ./xdg.nix ./zsh.nix diff --git a/modules/home/stylix.nix b/modules/home/stylix.nix deleted file mode 100644 index f3247a8..0000000 --- a/modules/home/stylix.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - inputs, - pkgs, - ... -}: -{ - imports = [ - inputs.stylix.homeModules.stylix - ]; - - stylix = { - enable = true; - base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; - autoEnable = false; - targets = { - kde.enable = true; - lazygit.enable = true; - }; - }; -} diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index 3bf9057..148fb0d 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -14,24 +14,24 @@ settings = { add_newline = true; format = pkgs.lib.concatStrings [ - "[░▒▓](#a3aed2)" - "[ 󱄅 ](bg:#a3aed2 fg:#090c0c)" - "[](bg:#769ff0 fg:#a3aed2)" + "[░▒▓](#f38ba8)" + "[ 󱄅 ](fg:#1e1e2e bg:#f38ba8)" + "[](fg:#f38ba8 bg:#fab387)" "$directory" - "[](fg:#769ff0 bg:#394260)" + "[](fg:#fab387 bg:#f9e2af)" "$git_branch" "$git_status" - "[](fg:#394260 bg:#212736)" + "[](fg:#f9e2af bg:#a6e3a1)" "$nodejs" "$rust" "$golang" "$php" - "[](fg:#212736)" + "[](fg:#a6e3a1)" "$line_break" "$character" ]; directory = { - style = "fg:#e3e5e5 bg:#769ff0"; + style = "fg:#1e1e2e bg:#fab387"; format = "[ $path ]($style)"; truncation_length = 3; truncation_symbol = "…/"; @@ -44,32 +44,32 @@ }; git_branch = { symbol = ""; - style = "bg:#394260"; - format = "[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)"; + style = "bg:#f9e2af"; + format = "[[ $symbol $branch ](fg:#1e1e2e bg:#f9e2af)]($style)"; }; git_status = { - style = "bg:#394260"; - format = "[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)"; + style = "bg:#f9e2af"; + format = "[[($all_status$ahead_behind )](fg:#1e1e2e bg:#f9e2af)]($style)"; }; nodejs = { symbol = ""; - style = "bg:#212736"; - format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; + style = "bg:#a6e3a1"; + format = "[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)"; }; rust = { symbol = ""; - style = "bg:#212736"; - format = ''[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)''; + style = "bg:#a6e3a1"; + format = ''[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)''; }; golang = { symbol = ""; - style = "bg:#212736"; - format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; + style = "bg:#a6e3a1"; + format = "[[ $symbol ($version) ](fg:#1e1e2e bg#a6e3a1)]($style)"; }; php = { symbol = ""; - style = "bg:#212736"; - format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; + style = "bg:#a6e3a1"; + format = "[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)"; }; scan_timeout = 100; }; @@ -80,7 +80,7 @@ autosuggestion.enable = true; syntaxHighlighting.enable = true; shellAliases = { - stu = "ssh tamassno@stu.cs.jmu.edu"; + stu = "ssh stu"; }; }; };