Removed stylix

This commit is contained in:
2025-10-28 23:56:03 -04:00
parent c3eb30b199
commit a4588c49aa
3 changed files with 23 additions and 43 deletions

View File

@@ -3,14 +3,14 @@
}: }:
{ {
imports = [ imports = [
./catppuccin.nix ./alacritty.nix
# ./catppuccin.nix
./firefox.nix ./firefox.nix
./git.nix ./git.nix
./nvf.nix ./nvf.nix
./packages.nix ./packages.nix
./plasma.nix # ./plasma.nix
./ssh.nix ./ssh.nix
./stylix.nix
./vscode.nix ./vscode.nix
./xdg.nix ./xdg.nix
./zsh.nix ./zsh.nix

View File

@@ -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;
};
};
}

View File

@@ -14,24 +14,24 @@
settings = { settings = {
add_newline = true; add_newline = true;
format = pkgs.lib.concatStrings [ format = pkgs.lib.concatStrings [
"[](#a3aed2)" "[](#f38ba8)"
"[ 󱄅 ](bg:#a3aed2 fg:#090c0c)" "[ 󱄅 ](fg:#1e1e2e bg:#f38ba8)"
"[](bg:#769ff0 fg:#a3aed2)" "[](fg:#f38ba8 bg:#fab387)"
"$directory" "$directory"
"[](fg:#769ff0 bg:#394260)" "[](fg:#fab387 bg:#f9e2af)"
"$git_branch" "$git_branch"
"$git_status" "$git_status"
"[](fg:#394260 bg:#212736)" "[](fg:#f9e2af bg:#a6e3a1)"
"$nodejs" "$nodejs"
"$rust" "$rust"
"$golang" "$golang"
"$php" "$php"
"[](fg:#212736)" "[](fg:#a6e3a1)"
"$line_break" "$line_break"
"$character" "$character"
]; ];
directory = { directory = {
style = "fg:#e3e5e5 bg:#769ff0"; style = "fg:#1e1e2e bg:#fab387";
format = "[ $path ]($style)"; format = "[ $path ]($style)";
truncation_length = 3; truncation_length = 3;
truncation_symbol = "/"; truncation_symbol = "/";
@@ -44,32 +44,32 @@
}; };
git_branch = { git_branch = {
symbol = ""; symbol = "";
style = "bg:#394260"; style = "bg:#f9e2af";
format = "[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)"; format = "[[ $symbol $branch ](fg:#1e1e2e bg:#f9e2af)]($style)";
}; };
git_status = { git_status = {
style = "bg:#394260"; style = "bg:#f9e2af";
format = "[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)"; format = "[[($all_status$ahead_behind )](fg:#1e1e2e bg:#f9e2af)]($style)";
}; };
nodejs = { nodejs = {
symbol = ""; symbol = "";
style = "bg:#212736"; style = "bg:#a6e3a1";
format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; format = "[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)";
}; };
rust = { rust = {
symbol = ""; symbol = "";
style = "bg:#212736"; style = "bg:#a6e3a1";
format = ''[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)''; format = ''[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)'';
}; };
golang = { golang = {
symbol = ""; symbol = "";
style = "bg:#212736"; style = "bg:#a6e3a1";
format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; format = "[[ $symbol ($version) ](fg:#1e1e2e bg#a6e3a1)]($style)";
}; };
php = { php = {
symbol = ""; symbol = "";
style = "bg:#212736"; style = "bg:#a6e3a1";
format = "[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)"; format = "[[ $symbol ($version) ](fg:#1e1e2e bg:#a6e3a1)]($style)";
}; };
scan_timeout = 100; scan_timeout = 100;
}; };
@@ -80,7 +80,7 @@
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
shellAliases = { shellAliases = {
stu = "ssh tamassno@stu.cs.jmu.edu"; stu = "ssh stu";
}; };
}; };
}; };