configure stylix and allow default to remain, autoenable is now on

This commit is contained in:
2025-11-02 12:42:18 -06:00
parent edafa28c3e
commit 97b66bbb33
6 changed files with 12 additions and 10 deletions

View File

@@ -9,6 +9,7 @@
./firefox ./firefox
./kitty ./kitty
./dunst ./dunst
./btop
./waybar ./waybar
./stylix ./stylix
./hypr ./hypr

View File

@@ -291,7 +291,7 @@ in {
} }
]; ];
input-field = lib.mkDefault [ input-field = lib.mkForce [
{ {
monitor = ""; monitor = "";
size = "400, 70"; size = "400, 70";
@@ -302,14 +302,14 @@ in {
outer_color = lib.mkDefault "$accent"; outer_color = lib.mkDefault "$accent";
inner_color = lib.mkDefault "$surface0"; inner_color = lib.mkDefault "$surface0";
font_color = lib.mkDefault "$text"; font_color = lib.mkDefault "$text";
fade_on_empty = false; fade_on_empty = true;
placeholder_text = "# <span foreground=\"##$textAlpha\"><i>󰌾 Logged in as </i><span foreground=\"##$accentAlpha\">$USER</span></span>"; placeholder_text = "# <span foreground=\"##$textAlpha\"><i>󰌾 Logged in as </i><span foreground=\"##$accentAlpha\">$USER</span></span>";
hide_input = false; hide_input = false;
check_color = lib.mkDefault "rgb(0047ab)"; check_color = lib.mkDefault "rgb(0047ab)";
fail_color = lib.mkDefault "rgb(ff0000)"; fail_color = lib.mkDefault "rgb(ff0000)";
fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>"; fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>";
capslock_color = "rgb(ff0000)"; capslock_color = lib.mkDefault "rgb(ff0000)";
position = "0, -185"; position = lib.mkForce "0, -185";
halign = "center"; halign = "center";
valign = "center"; valign = "center";
shadow_passes = 2; shadow_passes = 2;

View File

@@ -19,7 +19,7 @@ in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
stylix = { stylix = {
enable = true; enable = true;
autoEnable = false; #autoEnable = false;
image = wallpaper; image = wallpaper;
polarity = "dark"; polarity = "dark";
cursor = { cursor = {
@@ -59,6 +59,7 @@ in {
}; };
targets = { targets = {
waybar.enable = false;
kitty.enable = true; kitty.enable = true;
btop.enable = true; btop.enable = true;
hyprland.enable = true; hyprland.enable = true;

View File

@@ -20,14 +20,14 @@ in {
width = "100%"; width = "100%";
height = 25; height = 25;
horizontal = true; horizontal = true;
font-size = 12; font-size = lib.mkDefault 12;
prompt-text = " select: "; prompt-text = " select: ";
outline-width = 0; outline-width = 0;
border-width = 0; border-width = 0;
corner-radius = 9; corner-radius = 9;
background-color = "#2f1730"; background-color = lib.mkDefault "#2f1730";
selection-color = "#ffffff"; selection-color = lib.mkDefault "#ffffff";
text-color = "#888888"; text-color = lib.mkDefault "#888888";
min-input-width = 120; min-input-width = 120;
result-spacing = 15; result-spacing = 15;
padding-top = 0; padding-top = 0;

View File

@@ -38,7 +38,6 @@ in
stateVersion = "25.05"; stateVersion = "25.05";
packages = with pkgs; [ packages = with pkgs; [
ripgrep ripgrep
btop
p7zip p7zip
imagemagick imagemagick
sops sops

View File

@@ -21,6 +21,7 @@
dunst.enable = true; dunst.enable = true;
hypr.enable = true; hypr.enable = true;
tofi.enable = true; tofi.enable = true;
btop.enable = true;
nvf.enable = true; nvf.enable = true;
zsh.enable = true; zsh.enable = true;
ssh.enable = true; ssh.enable = true;