stylix: kill with hammers (its just kinda useless now and more annoying than anything) (also extra flake input)

This commit is contained in:
wo2wz 2025-10-18 11:32:46 -04:00
parent defaf9fbc0
commit 2e6cf2c456
6 changed files with 70 additions and 369 deletions

View file

@ -7,6 +7,65 @@
tab_bar_style = "powerline";
tab_powerline_style = "round";
confirm_os_window_close = -1;
font_size = 12;
# The basic colors
background = "#1a1b26";
foreground = "#a9b1d6";
selection_background = "#444b6a";
selection_foreground = "#a9b1d6";
# Cursor colors
cursor = "#a9b1d6";
cursor_text_color = "#1a1b26";
# URL underline color when hovering with mouse
url_color = "#787c99";
# Kitty window border colors
active_border_color = "#444b6a";
inactive_border_color = "#16161e";
# OS Window titlebar colors
wayland_titlebar_color = "#1a1b26";
macos_titlebar_color = "#1a1b26";
# Tab bar colors
active_tab_background = "#1a1b26";
active_tab_foreground = "#a9b1d6";
inactive_tab_background = "#16161e";
inactive_tab_foreground = "#787c99";
tab_bar_background = "#16161e";
# The 16 terminal colors
# normal
color0 = "#1a1b26";
color1 = "#c0caf5";
color2 = "#9ece6a";
color3 = "#0db9d7";
color4 = "#2ac3de";
color5 = "#bb9af7";
color6 = "#b4f9f8";
color7 = "#a9b1d6";
# bright
color8 = "#2f3549";
color9 = "#c0caf5";
color10 = "#9ece6a";
color11 = "#0db9d7";
color12 = "#2ac3de";
color13 = "#bb9af7";
color14 = "#b4f9f8";
color15 = "#d5d6db";
# extended base16 colors
color16 = "#a9b1d6";
color17 = "#f7768e";
color18 = "#16161e";
color19 = "#2f3549";
color20 = "#787c99";
color21 = "#cbccd1";
};
};
}

View file

@ -3,9 +3,9 @@
{
imports = [
./desktop.nix
./fonts.nix
./home-manager.nix
./scx.nix
./stylix.nix
./swap.nix
./yubikey.nix
];

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
fonts = {
packages = [ pkgs.nerd-fonts.hack ];
fontconfig.defaultFonts.monospace = [ "Hack Nerd Font" ];
};
}

View file

@ -1,44 +0,0 @@
{ inputs, config, pkgs, ... }:
{
imports = [ inputs.stylix.nixosModules.stylix ];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
targets = {
fontconfig.enable = false;
font-packages.enable = false;
};
fonts = {
sizes = {
applications = 12;
desktop = 10;
popups = 10;
terminal = 12;
};
monospace = {
package = pkgs.nerd-fonts.hack;
name = "Hack Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-color-emoji;
name = "Noto Color Emoji";
};
};
};
home-manager.users.wo2w.stylix = {
enable = true;
targets = {
btop.enable = false;
spicetify.enable = false;
vesktop.enable = false;
vscode.enable = false;
fontconfig.enable = false;
font-packages.enable = false;
librewolf.profileNames = [ "wo2w" ];
};
};
}